
	/*----------------------------------------------------------------------
	** Window Open
	-----------------------------------------------------------------------*/	
	function myPopup(link,id,width,height,scrollbars,resizable) {
		
		newwindow = window.open( link, id, 'height = '+height+', width = '+width+', dependent = 1, location = 0, scrollbars = '+scrollbars+', status= 0, toolbar = 0, menubar = 0, resizable = '+ resizable +'');
		if (window.focus) {newwindow.focus()}
		return false;
		
	}
	/*---------------------------------------------------------------------*/
