

var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable,toolbar'
win = window.open(mypage,myname,settings)
if(win.window.focus){win.window.focus();}
}

function OpenTheWindow(currency,HomeURL,language,refercode,routes,mypage,myname,wth,hht,scroll)
{
if (! window.focus)return true;
var windowname="BookWindow";
var mylink="http://www.aferry.to/AFRYminiengine.asp";
var href;
var thecurrency = currency.value;
var theHomeURL = HomeURL.value;
var thelanguage = language.value;
var therefercode = refercode.value;
var theroutes = routes.value;
var win = null;

if (typeof(mylink) == 'string'){
   href=mylink+"?" + thecurrency + "&HomeURL=" + theHomeURL+ "&language=" + thelanguage+"&refercode=" + therefercode + "&routes=" + theroutes;
   //document.write(href);
   }
else
   href=mylink.href;

LeftPosition = (screen.width) ? (screen.width-wth)/2 : 0;
TopPosition = (screen.height) ? (screen.height-hht)/2 : 0;
settings = 'height='+800+',width='+800+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',status';
win = window.open(href,myname,settings)
if(win.window.focus){win.window.focus();}
}


