/* General functions for popup windows */
var popupWindow;
function showWindow(url, height, width)
{
	var winOptions = "toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,scrollbars=auto,width=" + width + "px,height=" + height + "px,top=150px,left=100px";
	popupWindow = window.open(url,"popupWindow",winOptions);
}
function closeWindow()
{
	popupWindow.close();
}
function resizePopup() 
{
	window.setTimeout("window.parent.document.resizePopup(document.body.scrollHeight)",100);
}
function closePopup()
{
	window.parent.document.hidePopup();
}
 
document.closeWindow = closeWindow;


function showWindowA380(url, height, width)
{
	var winOptions = "toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,scrollbars=yes,width=" + width + "px,height=" + height + "px,top=0px,left=0px";
	popupWindow = window.open(url,"popupWindow",winOptions);
}

function emailafriend(url, height, width)
{
	var winOptions = "toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,copyhistory=no,scrollbars=yes,width=" + width + "px,height=" + height + "px,top=0px,left=0px";
	popupWindow = window.open(url,"popupWindow",winOptions);
}

 	
