function pop(url, props)
	{
		
		newwindow=window.open(url,'name',props);
		if (window.focus) {newwindow.focus()}
		return false;
	}
	
