// JavaScript Document
function popup(url,theHeight,theWidth )
{
	var theWidth = screen.width-10;
	var theHeight = screen.height-50;

    popWin=window.open(url,"newWindow","height=" + theHeight + ",width=" + theWidth + ",left=0,top=0,toolbar=no,location=no,resizable=no,menubar=no,status=no,titlebar=no,scrollbars=no");
    
    popWin.window.focus();



}
