// JavaScript Document
var popUpWin=0;
function enlargePhoto(URLStr)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbar=yes,resizable=yes,copyhistory=yes,width=500,height=350,left=180, top=180,screenX=180,screenY=180');
}
function showMenu(URLStr,width,height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left=80, top=80,screenX=80,screenY=80');
}

//var bookmarkurl="http://www.guidetothecosta.com/"
var bookmarktitle="Information about the Costa del Sol"

function addbookmark(bmurl){
  if (document.all)
     window.external.AddFavorite(bmurl,bookmarktitle)
}

function addbookmarkwithtitle(bmurl,bmtitle){
  if (document.all)
     window.external.AddFavorite(bmurl,bmtitle)
}

function patienceMsg(){
	alert('We are currently working on a new mapping system for Guidetothecosta.Com. Thank you for your patience.');
}

function doPopup(URLStr){

  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open('showmenu.asp?imgsrc='+URLStr, 'gttcWin', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width=500,height=350,left=180, top=180,screenX=180,screenY=180');
}