<!-- 
function openPopWindow(theURL,winName,features) { 
//ポップアップを変数にして 
var the_window = window.open(theURL,winName,features); 
//フォーカスさせる 
the_window.focus(); 
} 
//--> 
