

function popupwindow(href, Title, Width, Height, Left, Top,leftPos,topPos)
 
 {

leftPos = 0
topPos = 0
if (screen) {
leftPos = (screen.width / 2) - 151
topPos = (screen.height / 2) - 262
}
ElementWindow = window.open(href,Title,'width=400,height=450,left='+leftPos+',top='+topPos)
if (ElementWindow.opener == null) ElementWindow.opener = self;

 }
//function openWindow() {
  //  msgWindow = window.open('','newWin','width=100,height=100,screenX=400,screenY=400,top=400,left=400');
  //  msgWindow.location.href = 'apage.html';
//}
//{
//attr = "resizable=no,width=" + Width + ",height=" + Height + ",screenX=" + Left + ",screenY=" + Top + ",left=" + Left + ",top=" + Top + "";
//popupWindow=open(href, Title, 'width=600,height=600,top=0,left=0,fullscreen=no,toolbar=no,menubar=no,scrollbars=no,resizable=no');
//if (popupWindow.opener == null) popupWindow.opener = self;
//}

//function popup(mylink, windowname)
//{
//if (! window.focus)return true;
		//var href;
	//if (typeof(mylink) == 'string')
		//href=mylink;
	//else
		//href=mylink.href;
		//window.open(href, windowname, 'width=500,height=500,fullscreen=no,toolbar=no,menubar=no,scrollbars=no,resizable=no');
	//return false;
//}


//function openWin()  {
  //url = "mypage2.html"                //Set address of new window
  //var height = 400                       //Set height
  //var width = 400                        //Set width
  //var name = "winname"             //Set window name
  //var top = 20                            //Set distance from top
  //var left = 20                            //Set distance from bottom
  //newwin=window.open(url, name, "fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,directories=no,location=no,width=" + width + ",height=" + height + ",left=" + left + ",top=" + top);
//}
