// JavaScript Document


function doClear(theText) 
{
     if (theText.value == theText.defaultValue)
 {
         theText.value = ""
     }
 }


function openFlipBook(dd)
{
	window.open('/scripts/showFlipBook.php?id='+dd+'','flipBook','status=yes,scrollbars=no,resizable=yes,width=1000,height=615,screenX=0,screenY=0,top=0,left=0');
}


function addFavorite(dd)
{
	window.open('/scripts/addFavorite.php?id='+dd+'','addFavorite','status=yes,scrollbars=no,resizable=no,width=300,height=150,screenX=10,screenY=10,top=10,left=10');
}

function removeFavorite(dd)
{
	window.open('/scripts/removeFavorite.php?id='+dd+'','removeFavorite','status=yes,scrollbars=no,resizable=no,width=300,height=150,screenX=10,screenY=10,top=10,left=10');
}

function printVoucher(dd) 
{

		window.open('/scripts/printVoucher.php?id='+dd+'','printVoucher','status=yes,scrollbars=yes,resizable=no,width=600,height=500,screenX=10,screenY=10,top=10,left=10');
}

function printSpecial(dd) 
{

		window.open('/scripts/printSpecial.php?id='+dd+'','printSpecial','status=yes,scrollbars=yes,resizable=no,width=600,height=500,screenX=10,screenY=10,top=10,left=10');
}

function openPrint(dd) 
{

	window.open('/scripts/openPrint.php?id='+dd+'','openPrint','status=yes,scrollbars=yes,resizable=no,width=690,height=500,screenX=10,screenY=10,top=10,left=10');
}

function printMedia() 
{

	window.open('/scripts/printMedia.php','printMedia','status=yes,scrollbars=yes,resizable=no,width=700,height=500,screenX=10,screenY=10,top=10,left=10');
}

function sendtoFriend(dd) 
{

	window.open('/scripts/sendToFriend.php?id='+dd+'','sendToFriend','status=yes,scrollbars=yes,resizable=no,width=600,height=500,screenX=10,screenY=10,top=10,left=10');
}

function showMap()
{

	window.open('/map.php','showMap','status=no,scrollbars=no,resizable=no,titlebar=no, location=no,width=700,height=700,screenX=10,screenY=10,top=10,left=10');

}

function showPrintMap(id)
{

	window.open('/map.php?id=' + id + '&print=true','showMap','status=no,scrollbars=no,resizable=no,titlebar=no, location=no,width=700,height=700,screenX=10,screenY=10,top=10,left=10');

}

function gotoURL(url)
{

//window.location.href = url;
this.focus();

}

function scrollHere(divName) 
{

 //document.write(divName);
  
  var x = document.getElementById(divName);
  //var microsite = document.getElementById(microsite);
  //h = microsite.scrollHeight;
  //microsite.scrollTo(0,40);
  //  h = x.clientHeight;
   x.scrollIntoView(true);
 
  //document.write(h);
}

