// JavaScript Document
function pop(page)
{
	var nWidth = 600;
    var nHeight = 400;
    var iWidth =  (screen.availWidth - nWidth) / 2;
    var iHeight = (screen.availHeight - nHeight) / 2;
    window.open(page,'poppage', 'scrollbars=no,resizable=no,width='+nWidth+',height='+nHeight+', screenx='+iWidth+',screeny='+iHeight+',left='+iWidth+',top='+iHeight);
}
function popNew2(page)
{
	location.href=page;
}