// JavaScript Document
function open_win_wh(xurl,xwidth,xheight)
{
//open the new window with different features(width and height)
var xURL,winName,w,h,xfeature,objwin;
xURL=xurl;
winName="";
w=xwidth;
h=xheight;
xfeature="status=no,width="+w+",height="+h+",resizable=0,menubar=no,scrollbars=no,toolbar=no,location=no,top=1,left=1";
objwin=window.open(xURL,winName,xfeature);
objwin.focus();//get the new window focus and show to users forcibly firmly
}

function open_win_auto(xurl,xtop,xleft)
{
//open the new window with different features auto match with width and height)
var xURL,winName,xfeature,objwin;
xURL=xurl;
winName="";
xfeature="status=no,resizable=0,menubar=no,scrollbars=no,toolbar=no,location=no,top="+xtop+",left="+xleft;
objwin=window.open(xURL,winName,xfeature);
objwin.focus();//get the new window focus and show to users forcibly firmly
}


