var poped=0;
	window.poppos = new Object();
	window.poppos.width = 1024;
	window.poppos.height = 769;
	window.poppos.pwidth = 947;
	window.poppos.pheight = 695;
	if (screen) {if (screen.width) {if (screen.height) {
		window.poppos.width = screen.width;
		window.poppos.height = screen.height;
	}}}
	window.poppos.left = (window.poppos.width-window.poppos.pwidth)/2;
	window.poppos.top = (window.poppos.height-window.poppos.pheight)/2
	
function popuper(URLStr) {
	var left = window.poppos.left;
	var top = window.poppos.top;
	var width = window.poppos.pwidth;
	var height = window.poppos.pheight;
	if(poped) {
		if(!poped.closed) poped.close();
	}

	if( screen.height <= 768 ) {
		width = width +15;
		poped = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
	} else {
		poped = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');	
	}

	
}