
//really not important (the first two should be small for Opera's sake)
PositionX = 10;
PositionY = 10;
defaultWidthS  = 540;
defaultHeightS = 560;
defaultWidthB  = 800;
defaultHeightB = 600;

//kinda important
var AutoClose = true;

function popHtmlS(htmlURL){
	var imgWin = window.open(htmlURL,'_blank','scrollbars=yes,resizable=1,width='+defaultWidthS+',height='+defaultHeightS+',left='+PositionX+',top='+PositionY);
	if( !imgWin ) { return true; } //popup blockers should not cause errors
}
function popHtmlB(htmlURL){
	var imgWin = window.open(htmlURL,'_blank','scrollbars=yes,resizable=1,width='+defaultWidthB+',height='+defaultHeightB+',left='+PositionX+',top='+PositionY);
	if( !imgWin ) { return true; } //popup blockers should not cause errors
}
