/**
* global javascripts
*/

// disclainer page when leaving site
function disclaimer(str)
{
	x = window.location.href;
	if (x.indexOf("dosage") != -1 ) window.open("../disclaimer.asp?s="+str,"","left=0,top=0,width=800,height=590,toolbar=1,status=1,location=1,menubar=1,scrollbars=1,resizable=1");
	else window.open("disclaimer.asp?s="+str,"","left=0,top=0,width=800,height=590,toolbar=1,status=1,location=1,menubar=1,scrollbars=1,resizable=1");
}

function decision(str)
{
	disclaimer(str);
}

function openPopup (width, height, url, name) {
	var windowWidth = window.screen.width;
	var windowHeight = window.screen.height;
		
	var popupWidth = width;
	var popupHeight = height;
		
	var popupTop = (windowHeight - popupHeight) / 2;
	var popupLeft = (windowWidth - popupWidth) / 2;
		
	var features = "width=" +  popupWidth + ",height=" + popupHeight + ",top=" + popupTop + ",left=" + popupLeft;
		
	window.open(url, name, features);			
}
