﻿function openPopup(url, winName, winWidth, winHeight)
{
	//winName = "";
	winToolbar = "no";         // 'yes' or 'no'
	//winWidth = "695";          // width of window in px
	//winHeight = "330";         // width of window in px
	winDirectories = "no";     // 'yes' or 'no'
	winStatus = "yes";         // 'yes' or 'no'
	winResizable = "yes";       // 'yes' or 'no'
	winMenubar = "no";         // 'yes' or 'no'
	winScrollbars = "no";      // 'yes' or 'no'
	
	winParams = "toolbar="+winToolbar+","
	+"width="+winWidth+","
	+"height="+winHeight+","
	+"directories="+winDirectories+","
	+"status="+winStatus+","
	+"resizable="+winResizable+","
	+"menubar="+winMenubar+","
	+"scrollbars="+winScrollbars;
	
	window.open (url, winName, winParams).focus();
	return false;
}

function MM_openBrWindow(theURL,winName,features){
	window.open(theURL,winName,features);
}