var p = null;
function popwin(name,urlArgs,height,width,top,left) {
	//
	var xo = window.screenX==null?0:window.screenX;
	var yo = window.screenY==null?0:window.screenY;
	//
	var windowArgs = "toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,";
	windowArgs += "width="+(width==null?400:width)+",";
	windowArgs += "height="+(height==null?500:height)+",";
    windowArgs += "top="+(top==null?50+yo:top+yo)+",";
    windowArgs += "left="+(left==null?250+xo:left+xo)+"";
    //
	p = window.open(name + "Popup.jsp" + urlArgs, name, windowArgs);
    p.focus();

}

function popwin1(url,height,width,top,left) {
	//
	var xo = window.screenX==null?0:window.screenX;
	var yo = window.screenY==null?0:window.screenY;
	//
	var windowArgs = "toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,";
	windowArgs += "width="+(width==null?400:width)+",";
	windowArgs += "height="+(height==null?500:height)+",";
    windowArgs += "top="+(top==null?50+yo:top+yo)+",";
    windowArgs += "left="+(left==null?250+xo:left+xo)+"";
    //
	p = window.open( url, 'results' ,windowArgs);
    p.focus();

}
