/*
	popup window functions
*/


	var myWin = null;
	
	function gen_popup(theUrl, width, height) {
		
		theTitle = 'WinName';
		if ((! myWin) || (myWin.closed)) {
			
			theDim = 'width='+width+',height='+height+',left=10,top=10,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,';
	
			myWin = window.open(theUrl, theTitle, theDim);
			myWin.opener = window;
		} else {
			myWin.location = theUrl;
			myWin.focus();
			myWin.opener = window;
		}
	}
	
	
	function p_link(mylink, closeme){
		
		if ( (window.focus && window.opener)){
			window.opener.focus();
			window.opener.location.href=mylink;
			var here = window.opener.location.href;
			//window.opener.location.reload();
		}
		if (closeme){
			window.close();
		}
	}

	
	
