var callurl = "";

function open_win(url){
	
	
	
	if(url == "contact"){
		url = "contactus.php";	
	}else if(url == "privacy"){
		url = "privacy.php";	
	}else if(url == "terms"){
		url = "terms.php";	
	}else if(url == "bda"){
		url = "http://bedrinkaware.com.au/";	
	}else if(url == "unsubscribe"){
		url = "unsubscribe.php";	
	}else if(url == ""){
		url = "contactus.php";
	}
	
	callurl = url;
	
	window.setTimeout("open_win2()", 500);
}

var newwindow = "";
function open_win2() 
{	
	
	var url = callurl;
	
	if (url == "http://bedrinkaware.com.au/"){
		window.open("http://bedrinkaware.com.au/", "bedrinkaware")
	}else if(url == "unsubscribe.php"){
		newwindow = NewWindow(url, url,316, 400,'yes');
		
	}else if(url == "contactus.php"){
		newwindow = NewWindow(url, url,390, 300,'yes');
	}
	else{
		newwindow = NewWindow(url, url,500, 600,'yes');
	}
}


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';
	
	
	var realname = myname.substring(1,4);
	
	window.open(mypage,realname,settings);
}


function copyright(brand){
  var year = new Date().getFullYear();
  document.write('&copy; ' + brand + ' ' + year);
}


function openBooking()
{
	var mypage = "/booking/home.php";
	var myname = "booking";
	var w = 900;
	var h = 800;
	var scroll = "yes";
	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=yes';

	window.open(mypage, myname, settings);
}


function openCrisis()
{
    //	var crisisPopup = window.open('crisis.html', 'crisisPopup', 'width=570,height=580,status=0,toolbar=0,location=0,menubar=0,scrollbars=0');
}

