// JavaScript Document
function largePop(windowURL,windowWidth,windowHeight) 
{
popuplarge=window.open(windowURL,"large","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+windowWidth+",height="+windowHeight);
popuplarge.focus();
	var xposition = 400; 
	var yposition = 300;
	if ((parseInt(navigator.appVersion) >= 4 )) {
        xposition = (screen.width - windowWidth) / 2;
        yposition = ((screen.height - windowHeight) / 2) - 50;
    }
	popuplarge.moveTo(xposition, yposition);
}
function otherPop(windowURL,windowWidth,windowHeight) 
{
popupother=window.open(windowURL,"other","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+windowWidth+",height="+windowHeight);
popupother.focus();
	var xposition = 400; 
	var yposition = 300;
	if ((parseInt(navigator.appVersion) >= 4 )) {
        xposition = (screen.width - windowWidth) / 2;
        yposition = ((screen.height - windowHeight) / 2) - 50;
    }
	popupother.moveTo(xposition, yposition);
}