///////////////////////// AUTOMAXIMIZE WINDOW SCRIPT
/*
Auto Maximize Window Script- By Nick Lowe (nicklowe@ukonline.co.uk)
For full source code, 100's more free DHTML scripts, and Terms Of Use
Visit http://www.dynamicdrive.com
*/

top.window.moveTo(0,0);
if (document.all) {
top.window.resizeTo(screen.availWidth,screen.availHeight);
}
else if (document.layers||document.getElementById) {
if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}
}
// End -->

///////////////////////// DISABLE RIGHT CLICK SCRIPT
/*
Disable right click script III- By Renigade (renigade@mediaone.net)
*/
var message="";
function clickIE() {if (document.all) {(message);return false;}}

function clickNS(e) 
{
if (document.layers||(document.getElementById&&!document.all)) 
{
	if (e.which==2||e.which==3) {(message);return false;}
}
}

if (document.layers) 
{
	document.captureEvents(Event.MOUSEDOWN);
	document.onmousedown=clickNS;
}
else 
{
	document.onmouseup=clickNS;
	document.oncontextmenu=clickIE;
}
document.oncontextmenu=new Function("return false")
// End --> 


///////////////////////// HIGHLIGHT FORM ELEMENT SCRIPT
/*
Highlight form element- © Dynamic Drive (www.dynamicdrive.com)
*/
var highlightcolor="RGB(253,232,251)"

var ns6=document.getElementById&&!document.all
var previous=''
var eventobj

//Regular expression to highlight only form elements
var intended=/INPUT|TEXTAREA|SELECT|OPTION/

//Function to check whether element clicked is form element
function checkel(which){
if (which.style&&intended.test(which.tagName)){
if (ns6&&eventobj.nodeType==3)
eventobj=eventobj.parentNode.parentNode
return true
}
else
return false
}

//Function to highlight form element
function highlight(e){
eventobj=ns6? e.target : event.srcElement
if (previous!=''){
if (checkel(previous))
previous.style.backgroundColor=''
previous=eventobj
if (checkel(eventobj))
eventobj.style.backgroundColor=highlightcolor
}
else{
if (checkel(eventobj))
eventobj.style.backgroundColor=highlightcolor
previous=eventobj
}
}


/*
DHTML slideshow script- 
© Dynamic Drive (www.dynamicdrive.com)
For full source code, usage terms, and 100's more DHTML scripts, visit http://dynamicdrive.com
*/

var photos_Hotel=new Array()
var photos_Cancun=new Array()

var photos_Hotel_link=new Array()
var photos_Cancun_link=new Array()

var which_Hotel=0
var which_Cancun=0

//define images. You can have as many as you want. Images MUST be of the same dimensions (for NS's sake)
photos_Hotel[0]="./images/Hotel/CanaBrava.jpg"
photos_Hotel[1]="./images/Hotel/PalmRest.jpg"
photos_Hotel[2]="./images/Hotel/Caribeno.jpg"
photos_Hotel[3]="./images/Hotel/FrutasyFlores.jpg"
photos_Hotel[4]="./images/Hotel/FiestasTema.jpg"

photos_Cancun[0]="./images/Cancun/buceo.jpg"
photos_Cancun[1]="./images/Cancun/kids.jpg"
photos_Cancun[2]="./images/Cancun/volleyball.jpg"
photos_Cancun[3]="./images/Cancun/Golf2.jpg"
photos_Cancun[4]="./images/Cancun/Delfines.jpg"
photos_Cancun[5]="./images/Cancun/Chichen.jpg"
photos_Cancun[6]="./images/Cancun/jungletour.jpg"
photos_Cancun[7]="./images/Cancun/shopping.jpg"

//Specify whether images should be linked or not (1=linked)
var linkornot_Hotel=0
var linkornot_Cancun=0

//Set corresponding URLs for above images. Define ONLY if variable linkornot equals "1"
photos_Hotel_link[0]=""
photos_Hotel_link[1]=""
photos_Hotel_link[2]=""
photos_Hotel_link[3]=""
photos_Hotel_link[4]=""

photos_Cancun_link[0]=""
photos_Cancun_link[1]=""
photos_Cancun_link[2]=""
photos_Cancun_link[3]=""
photos_Cancun_link[4]=""
photos_Cancun_link[5]=""
photos_Cancun_link[6]=""
photos_Cancun_link[7]=""

//do NOT edit pass this line

var preloadedimages_Hotel=new Array()
var preloadedimages_Cancun=new Array()

for (i=0;i<photos_Hotel.length;i++){
preloadedimages_Hotel[i]=new Image()
preloadedimages_Hotel[i].src=photos_Hotel[i]
}

for (i=0;i<photos_Cancun.length;i++){
preloadedimages_Cancun[i]=new Image()
preloadedimages_Cancun[i].src=photos_Cancun[i]
}

function applyeffect(){
if (document.all){
photoslider.filters.revealTrans.Transition=Math.floor(Math.random()*23)
photoslider.filters.revealTrans.stop()
photoslider.filters.revealTrans.apply()
}
}

function playeffect(){
if (document.all)
photoslider.filters.revealTrans.play()
}

function keeptrack(origen){
if (origen=="Hotel")
	window.status="Image "+(which_Hotel+1)+" of "+photos_Hotel.length
else if (origen=="Cancun")
	window.status="Image "+(which_Cancun+1)+" of "+photos_Cancun.length
}

function backward(origen){
if (origen=="Hotel"&&which_Hotel>0){
	which_Hotel--
	applyeffect()
	document.images.photoslider.src=photos_Hotel[which_Hotel]
	playeffect()
	keeptrack(origen)
}
else if (origen=="Cancun"&&which_Cancun>0){
	which_Cancun--
	applyeffect()
	document.images.photoslider.src=photos_Cancun[which_Cancun]
	playeffect()
	keeptrack(origen)
}
}

function forward(origen){
if (origen=="Hotel"&&which_Hotel<photos_Hotel.length-1){
	which_Hotel++
	applyeffect()
	document.images.photoslider.src=photos_Hotel[which_Hotel]
	playeffect()
	keeptrack(origen)
}
else if (origen=="Cancun"&&which_Cancun<photos_Cancun.length-1){
	which_Cancun++
	applyeffect()
	document.images.photoslider.src=photos_Cancun[which_Cancun]
	playeffect()
	keeptrack(origen)
}
}

function transport(origen){
if (origen=="Hotel")
	window.location=photos_Hotel_link[which_Hotel];
else if (origen=="Cancun")
	window.location=photos_Cancun_link[which_Cancun];
}

//Thumbnail image viewer- 
//© Dynamic Drive (www.dynamicdrive.com)
//For full source code, usage terms, and 100's more DHTML scripts, visit http://www.dynamicdrive.com

var ie_iv=document.all
var ns_iv=document.layers
var ns6_iv=document.getElementById&&!document.all

function enlarge(which,e){
//Render image code for IE 4+ and NS6
if (ie_iv||ns6_iv){
crossobj4=document.getElementById? document.getElementById("ShowImage") : document.all.ShowImage

//crossobj4.innerHTML='<div id=drag align="right" style="cursor:hand;background-color: #FF3399"><a href="#" onClick="closepreview()"><img src="./Images/close.gif" width="16" height="14" border=0></a></div><img src="'+which+'">'
crossobj4.innerHTML='<div id=drag align="right" style="cursor:hand;background-color: #FFFFFF""><a href="#" onClick="closepreview()" alt="Click to close"><img src="'+which+'" border="0"></a></div>'
crossobj4.style.zIndex = ++indice
crossobj4.style.visibility="visible"
return false
}
//Render image code for NS 4
else if (document.layers){
if (document.ShowImage.visibility=="hide"){
document.ShowImage.document.write('<a href="#" onMouseover="drag_dropns(ShowImage)"><img src="'+which+'" border="0"></a>')
document.ShowImage.document.close()
document.ShowImage.left=e.x
document.Showimage.top=e.y
document.ShowImage.visibility="show"
}
else
document.ShowImage.visibility="hide"
return false
}
//if NOT IE 4+ or NS 4, simply display image in full browser window
else
return true
}

function closepreview(){
crossobj4.style.visibility="hidden"
}


///////////////////////// POPUP BOX SCRIPT
/*
Popup Box- By Jim Silver @ jimsilver47@yahoo.com
Exlusive permission granted to Dynamic Drive (http://dynamicdrive.com) to include this script in their DHTML archive.
For full source code, terms of use, and 100's more scripts, visit http://www.dynamicdrive.com
*/
var ns4_popup=document.layers
var ie4_popup=document.all
var ns6_popup=document.getElementById&&!document.all

var dragswitchAboutUs=0
var dragswitchContactUs=0
var dragswitchPhotoGallery=0
var dragswitchShowImage=0
var dragswitchEnchanted=0
var dragswitchFascination=0
var dragswitchUnforgettable=0
var dragswitchWeddingPackage=0
var dragswitchDocumentation=0

var nsx
var nsy
var nstemp

//drag drop function for NS 4////
/////////////////////////////////
function drag_dropns(name){
if (!ns4_popup)
return
temp=eval(name)
temp.captureEvents(Event.MOUSEDOWN | Event.MOUSEUP)
temp.onmousedown=gons
temp.onmousemove=dragns
temp.onmouseup=stopns
}
function gons(e){
temp.captureEvents(Event.MOUSEMOVE)
nsx=e.x
nsy=e.y
}
function dragns(e){
if (dragswitchAboutUs==1){
temp.moveBy(e.x-nsx,e.y-nsy)
return false
}
if (dragswitchContactUs==1){
temp.moveBy(e.x-nsx,e.y-nsy)
return false
}
if (dragswitchPhotoGallery==1){
temp.moveBy(e.x-nsx,e.y-nsy)
return false
}
if (dragswitchShowImage==1){
temp.moveBy(e.x-nsx,e.y-nsy)
return false
}
if (dragswitchEnchanted==1){
temp.moveBy(e.x-nsx,e.y-nsy)
return false
}
if (dragswitchFascination==1){
temp.moveBy(e.x-nsx,e.y-nsy)
return false
}
if (dragswitchUnforgettable==1){
temp.moveBy(e.x-nsx,e.y-nsy)
return false
}
if (dragswitchWeddingPackage==1){
temp.moveBy(e.x-nsx,e.y-nsy)
return false
}
if (dragswitchDocumentation==1){
temp.moveBy(e.x-nsx,e.y-nsy)
return false
}
}
function stopns(){
temp.releaseEvents(Event.MOUSEMOVE)
}

//drag drop function for ie4+ and NS6////
/////////////////////////////////
function drag_drop(e){
if (ie4_popup&&dragapprovedAboutUs){
crossobj2.style.left=tempx+event.clientX-offsetx
crossobj2.style.top=tempy+event.clientY-offsety
return false
}
else if (ns6_popup&&dragapprovedAboutUs){
crossobj2.style.left=tempx+e.clientX-offsetx
crossobj2.style.top=tempy+e.clientY-offsety
return false
}

if (ie4_popup&&dragapprovedContactUs){
crossobj3.style.left=tempx+event.clientX-offsetx
crossobj3.style.top=tempy+event.clientY-offsety
return false
}
else if (ns6_popup&&dragapprovedContactUs){
crossobj3.style.left=tempx+e.clientX-offsetx
crossobj3.style.top=tempy+e.clientY-offsety
return false
}

if (ie4_popup&&dragapprovedShowImage){
crossobj4.style.left=tempx+event.clientX-offsetx
crossobj4.style.top=tempy+event.clientY-offsety
return false
}
else if (ns6_popup&&dragapprovedShowImage){
crossobj4.style.left=tempx+e.clientX-offsetx
crossobj4.style.top=tempy+e.clientY-offsety
return false
}

if (ie4_popup&&dragapprovedEnchanted){
crossobj5.style.left=tempx+event.clientX-offsetx
crossobj5.style.top=tempy+event.clientY-offsety
return false
}
else if (ns6_popup&&dragapprovedEnchanted){
crossobj5.style.left=tempx+e.clientX-offsetx
crossobj5.style.top=tempy+e.clientY-offsety
return false
}
if (ie4_popup&&dragapprovedFascination){
crossobj6.style.left=tempx+event.clientX-offsetx
crossobj6.style.top=tempy+event.clientY-offsety
return false
}
else if (ns6_popup&&dragapprovedFascination){
crossobj6.style.left=tempx+e.clientX-offsetx
crossobj6.style.top=tempy+e.clientY-offsety
return false
}
if (ie4_popup&&dragapprovedUnforgettable){
crossobj7.style.left=tempx+event.clientX-offsetx
crossobj7.style.top=tempy+event.clientY-offsety
return false
}
else if (ns6_popup&&dragapprovedUnforgettable){
crossobj7.style.left=tempx+e.clientX-offsetx
crossobj7.style.top=tempy+e.clientY-offsety
return false
}
if (ie4_popup&&dragapprovedWeddingPackage){
crossobj8.style.left=tempx+event.clientX-offsetx
crossobj8.style.top=tempy+event.clientY-offsety
return false
}
else if (ns6_popup&&dragapprovedWeddingPackage){
crossobj8.style.left=tempx+e.clientX-offsetx
crossobj8.style.top=tempy+e.clientY-offsety
return false
}
if (ie4_popup&&dragapprovedDocumentation){
crossobj9.style.left=tempx+event.clientX-offsetx
crossobj9.style.top=tempy+event.clientY-offsety
return false
}
else if (ns6_popup&&dragapprovedDocumentation){
crossobj9.style.left=tempx+e.clientX-offsetx
crossobj9.style.top=tempy+e.clientY-offsety
return false
}
}

function initializedrag(e)
{
crossobj2=ns6_popup? document.getElementById("AboutUs") : document.all.AboutUs
crossobj3=ns6_popup? document.getElementById("ContactUs") : document.all.ContactUs
crossobj4=ns6_popup? document.getElementById("ShowImage") : document.all.ShowImage
crossobj5=ns6_popup? document.getElementById("Enchanted") : document.all.Enchanted
crossobj6=ns6_popup? document.getElementById("Fascination") : document.all.Fascination
crossobj7=ns6_popup? document.getElementById("Unforgettable") : document.all.Unforgettable
crossobj8=ns6_popup? document.getElementById("WeddingPackage") : document.all.WeddingPackage
crossobj9=ns6_popup? document.getElementById("Documentation") : document.all.Documentation

dragapprovedAboutUs=false
dragapprovedContactUs=false
dragapprovedShowImage=false
dragapprovedEnchanted=false
dragapprovedFascination=false
dragapprovedUnforgettable=false
dragapprovedWeddingPackage=false
dragapprovedDocumentation=false

var firedobj=ns6_popup? e.target : event.srcElement
var firedobj3=ns6_popup? e.target : event.srcElement
var firedobj4=ns6_popup? e.target : event.srcElement
var firedobj5=ns6_popup? e.target : event.srcElement
var firedobj6=ns6_popup? e.target : event.srcElement
var firedobj7=ns6_popup? e.target : event.srcElement
var firedobj8=ns6_popup? e.target : event.srcElement
var firedobj9=ns6_popup? e.target : event.srcElement

var topelement=ns6_popup? "HTML" : "BODY"
var topelement3=ns6_popup? "HTML" : "BODY"
var topelement4=ns6_popup? "HTML" : "BODY"
var topelement5=ns6_popup? "HTML" : "BODY"
var topelement6=ns6_popup? "HTML" : "BODY"
var topelement7=ns6_popup? "HTML" : "BODY"
var topelement8=ns6_popup? "HTML" : "BODY"
var topelement9=ns6_popup? "HTML" : "BODY"

while (firedobj.tagName!=topelement&&firedobj.id!="dragbarAboutUs")
{
firedobj=ns6_popup? firedobj.parentNode : firedobj.parentElement
}

while (firedobj3.tagName!=topelement3&&firedobj3.id!="dragbarContactUs")
{
firedobj3=ns6_popup? firedobj3.parentNode : firedobj3.parentElement
}

while (firedobj4.tagName!=topelement4&&firedobj4.id!="dragbarShowImage")
{
firedobj4=ns6_popup? firedobj4.parentNode : firedobj4.parentElement
}

while (firedobj5.tagName!=topelement&&firedobj5.id!="dragbarEnchanted")
{
firedobj5=ns6_popup? firedobj5.parentNode : firedobj5.parentElement
}

while (firedobj6.tagName!=topelement&&firedobj6.id!="dragbarFascination")
{
firedobj6=ns6_popup? firedobj6.parentNode : firedobj6.parentElement
}

while (firedobj7.tagName!=topelement&&firedobj7.id!="dragbarUnforgettable")
{
firedobj7=ns6_popup? firedobj7.parentNode : firedobj7.parentElement
}

while (firedobj8.tagName!=topelement&&firedobj8.id!="dragbarWeddingPackage")
{
firedobj8=ns6_popup? firedobj8.parentNode : firedobj8.parentElement
}

while (firedobj9.tagName!=topelement&&firedobj9.id!="dragbarDocumentation")
{
firedobj9=ns6_popup? firedobj9.parentNode : firedobj9.parentElement
}

if (firedobj.id=="dragbarAboutUs"){
offsetx=ie4_popup? event.clientX : e.clientX
offsety=ie4_popup? event.clientY : e.clientY

tempx=parseInt(crossobj2.style.left)
tempy=parseInt(crossobj2.style.top)

dragapprovedAboutUs=true
document.onmousemove=drag_drop
document.getElementById('dragbarAboutUs').onmouseup=new Function("dragapprovedAboutUs=false")
}

if (firedobj3.id=="dragbarContactUs"){
offsetx=ie4_popup? event.clientX : e.clientX
offsety=ie4_popup? event.clientY : e.clientY

tempx=parseInt(crossobj3.style.left)
tempy=parseInt(crossobj3.style.top)

dragapprovedContactUs=true
document.onmousemove=drag_drop
document.getElementById('dragbarContactUs').onmouseup=new Function("dragapprovedContactUs=false")
}

if (firedobj4.id=="dragbarShowImage"){
offsetx=ie4_popup? event.clientX : e.clientX
offsety=ie4_popup? event.clientY : e.clientY

tempx=parseInt(crossobj4.style.left)
tempy=parseInt(crossobj4.style.top)

dragapprovedShowImage=true
document.onmousemove=drag_drop
document.getElementById('dragbarShowImage').onmouseup=new Function("dragapprovedShowImage=false")
}

if (firedobj5.id=="dragbarEnchanted"){
offsetx=ie4_popup? event.clientX : e.clientX
offsety=ie4_popup? event.clientY : e.clientY

tempx=parseInt(crossobj5.style.left)
tempy=parseInt(crossobj5.style.top)

dragapprovedEnchanted=true
document.onmousemove=drag_drop
document.getElementById('dragbarEnchanted').onmouseup=new Function("dragapprovedEnchanted=false")
}

if (firedobj6.id=="dragbarFascination"){
offsetx=ie4_popup? event.clientX : e.clientX
offsety=ie4_popup? event.clientY : e.clientY

tempx=parseInt(crossobj6.style.left)
tempy=parseInt(crossobj6.style.top)

dragapprovedFascination=true
document.onmousemove=drag_drop
document.getElementById('dragbarFascination').onmouseup=new Function("dragapprovedFascination=false")
}

if (firedobj7.id=="dragbarUnforgettable"){
offsetx=ie4_popup? event.clientX : e.clientX
offsety=ie4_popup? event.clientY : e.clientY

tempx=parseInt(crossobj7.style.left)
tempy=parseInt(crossobj7.style.top)

dragapprovedUnforgettable=true
document.onmousemove=drag_drop
document.getElementById('dragbarUnforgettable').onmouseup=new Function("dragapprovedUnforgettable=false")
}

if (firedobj8.id=="dragbarWeddingPackage"){
offsetx=ie4_popup? event.clientX : e.clientX
offsety=ie4_popup? event.clientY : e.clientY

tempx=parseInt(crossobj8.style.left)
tempy=parseInt(crossobj8.style.top)

dragapprovedWeddingPackage=true
document.onmousemove=drag_drop
document.getElementById('dragbarWeddingPackage').onmouseup=new Function("dragapprovedWeddingPackage=false")
}

if (firedobj9.id=="dragbarDocumentation"){
offsetx=ie4_popup? event.clientX : e.clientX
offsety=ie4_popup? event.clientY : e.clientY

tempx=parseInt(crossobj9.style.left)
tempy=parseInt(crossobj9.style.top)

dragapprovedDocumentation=true
document.onmousemove=drag_drop
document.getElementById('dragbarDocumentation').onmouseup=new Function("dragapprovedDocumentation=false")
}

}

document.onmousedown=initializedrag
//document.onmouseup=new Function("dragapprovedAboutUs=false")
////drag drop functions end here//////



var indice=5

function hideboxAboutUs(){
if (ie4_popup||ns6_popup)
document.getElementById('AboutUs').style.visibility = "hidden"
//crossobj2.style.visibility="hidden"
else if (ns4_popup)
document.AboutUs.visibility="hide"
}

function showboxAboutUs(){
if (ie4_popup||ns6_popup){
	document.getElementById('AboutUs').style.zIndex = ++indice
	document.getElementById('AboutUs').style.visibility = "visible"}
else if (ns4_popup)
	document.AboutUs.visibility="show"
}


function hideboxContactUs(){
if (ie4_popup||ns6_popup)
document.getElementById('ContactUs').style.visibility = "hidden"
//crossobj2.style.visibility="hidden"
else if (ns4_popup)
document.ContactUs.visibility="hide"
}

function showboxContactUs(){
if (ie4_popup||ns6_popup) {
	document.getElementById('ContactUs').style.zIndex = ++indice
	document.getElementById('ContactUs').style.visibility = "visible"
	document.frmContactUs.FirstName.focus()
	}
else if (ns4_popup)
	document.ContactUs.visibility="show"
}

function hideboxPhotoGallery(){
if (ie4_popup||ns6_popup)
	document.getElementById('PhotoGallery').style.visibility = "hidden"
	//crossobj2.style.visibility="hidden"
else if (ns4_popup)
document.PhotoGallery.visibility="hide"
}

function showboxPhotoGallery(){
if (ie4_popup||ns6_popup){
	document.getElementById('PhotoGallery').style.zIndex = ++indice
	document.getElementById('PhotoGallery').style.visibility = "visible"}
else if (ns4_popup)
	document.PhotoGallery.visibility="show"
}

function hideboxEnchanted(){
if (ie4_popup||ns6_popup)
document.getElementById('Enchanted').style.visibility = "hidden"
//crossobj2.style.visibility="hidden"
else if (ns4_popup)
document.Enchanted.visibility="hide"
}

function showboxEnchanted(){
if (ie4_popup||ns6_popup) {
	document.getElementById('Enchanted').style.zIndex = ++indice
	document.getElementById('Enchanted').style.visibility = "visible"
	}
else if (ns4_popup)
	document.Enchanted.visibility="show"
}

function hideboxFascination(){
if (ie4_popup||ns6_popup)
document.getElementById('Fascination').style.visibility = "hidden"
//crossobj2.style.visibility="hidden"
else if (ns4_popup)
document.Fascination.visibility="hide"
}

function showboxFascination(){
if (ie4_popup||ns6_popup) {
	document.getElementById('Fascination').style.zIndex = ++indice
	document.getElementById('Fascination').style.visibility = "visible"
	}
else if (ns4_popup)
	document.Fascination.visibility="show"
}

function hideboxUnforgettable(){
if (ie4_popup||ns6_popup)
document.getElementById('Unforgettable').style.visibility = "hidden"
//crossobj2.style.visibility="hidden"
else if (ns4_popup)
document.Unforgettable.visibility="hide"
}

function showboxUnforgettable(){
if (ie4_popup||ns6_popup) {
	document.getElementById('Unforgettable').style.zIndex = ++indice
	document.getElementById('Unforgettable').style.visibility = "visible"
	}
else if (ns4_popup)
	document.Unforgettable.visibility="show"
}

function hideboxWeddingPackage(){
if (ie4_popup||ns6_popup)
document.getElementById('WeddingPackage').style.visibility = "hidden"
//crossobj2.style.visibility="hidden"
else if (ns4_popup)
document.WeddingPackage.visibility="hide"
}

function showboxWeddingPackage(){
if (ie4_popup||ns6_popup) {
	document.getElementById('WeddingPackage').style.zIndex = ++indice
	document.getElementById('WeddingPackage').style.visibility = "visible"
	}
else if (ns4_popup)
	document.WeddingPackage.visibility="show"
}

function hideboxDocumentation(){
if (ie4_popup||ns6_popup)
document.getElementById('Documentation').style.visibility = "hidden"
//crossobj2.style.visibility="hidden"
else if (ns4_popup)
document.Documentation.visibility="hide"
}

function showboxDocumentation(){
if (ie4_popup||ns6_popup) {
	document.getElementById('Documentation').style.zIndex = ++indice
	document.getElementById('Documentation').style.visibility = "visible"
	}
else if (ns4_popup)
	document.Documentation.visibility="show"
}

// End -->
