// JavaScript Document

// call from flash
// getURL("javascript:popUpWindow('seccode.html',null, null, 450, 500, 'yes')");	
var popUpWin=0;

function popUpWindow(URLStr, left, top, width, height, scroller, sTools) {

	height += 40
	if(popUpWin) { 
		if(!popUpWin.closed) popUpWin.close();
	}
	if(left == null){ left = (screen.width - width) / 2; }
	if(top == null){ top = (screen.height - height) / 2; }
	if(!scroller){scroller = 'no' }
	if(!sTools){sTools = 'no'}
	popUpWin = open(URLStr, 'popUpWin', 'toolbar='+sTools +',location=no,directories=no,status=no,menubar=no,scrollbars='+scroller+',resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');

}
