function OpenDialog(strURL, intHeight, intWidth, strWindowName)
{
	if(strWindowName != null && strWindowName.length == 0)
		strWindowName = "DialogWindow";
		
	window.open(strURL, strWindowName, "height=" + intHeight + ",width=" + intWidth + ",top=50,left=20,toolbar=no,scrollbars=yes,menu=no,resizable=yes,status=no");
}

function OpenDialogWithMenuBar(strURL, intHeight, intWidth, strWindowName)
{
	if(strWindowName != null && strWindowName.length == 0)
		strWindowName = "DialogWindow";
		
	window.open(strURL, strWindowName, "height=" + intHeight + ",width=" + intWidth + ",top=50,left=20,toolbar=no,scrollbars=yes,menubar=yes,resizable=yes,status=no");
}

