//-----------------------------------------Begin------------------------------------------//
			
	/*NOTES
		Author: Dean Dal Bozzo
		Email: dean@pagefx.com
		Created on: 5/10/2006
		
		Examples:
			1. popUpWindow('index.html','Home Page',400,425);
			2. popUpWindow('index.html');
		//--------------------------------------------------------------------------------------- 
		Browser Issuses:
			NOTE (1): 'all' is not regonized in Netscape (other browsers not tested).  This part of the script resets the last selected row to its orginal color.

	*/
	
	function popUpWindow(link,title,pxH,pxW){
		link	= link || '';
		title	= title || '';
		pxH		= pxH || 300;
		pxW		= pxW || 300;
		var popWin;
		
		// Check if link was defined	
		if(link.length > 0){
			popWin = window.open(link,title,'height=' + pxH + ',width=' + pxW + ',scrollbars=1');
			popWin.focus();
		}else{
			alert('No link was specified.\npopUpWindow function accepts 4 arguments:\nlink\ntitle* default = \'\'\npxH* default = 300\npxW* default = 300\n*Optional');
		}
	}
//----------------------------------End All-----------------------------------------------//-->
