// 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) {
	if(popUpWin) { 
		if(!popUpWin.closed) popUpWin.close();
	}
	height += 40
	if(left == null){ left = (screen.width - width) / 2; }
	if(top == null){ top = (screen.height - height) / 2; }
	if(!scroller){scroller = 'no' }
	
	popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,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+'');

}
