//Create a Popup for the selected page	
	function openPopUp(url, name) {
        window.open(url, name, 'menubar=no,scrollbars=no,toolbar=no,location=no,width=225,height=505');
    }



//Form popup result testing
function pop(f) { 
   window.open('', 'newWin','width=225,height=505'); 
   f.target='newWin'; 
   return true; 
} 