/*
* Popups a window of specified features.
* @param	theURL:string		URL to open in the window
* @param	winName:string		Name of the window to be opened
* @param	featrures:string	Parameters comma separated
* Usage:
	popup('test','123','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=100,height=100');
*/
function popup(theURL,winName,features) {
  window.open(theURL,winName,features);
}
