﻿// popup.js
// Controls the handling of popup windows for layout previews.

function popup(strUrl, iWidth, iHeight, iLeft, iTop, blnCenter, strName, strScroll, strMenus, strTools, strResize, strLocate)
{
	if ( blnCenter )
	{
		iLeft = (screen.width - iWidth) / 2;
		iTop = (screen.height - iHeight) / 2;
	}
	
	var winprops = 	"location=" + strLocate + ",scrollbars=" + strScroll + ",menubar=" + strMenus + ",toolbar=" + strTools + ",resizable=" + strResize + ",left=" + iLeft + ",top=" + iTop + ",width=" + iWidth + ",height=" + iHeight;		

	var popup = window.open(strUrl,strName,winprops);
	popup.focus();
}