/*ウィンドウオープン************************************************************/


function w_open(url,w_name,wid,hei,loca,menu,resiz,scroll,status,tool){
	options="width="+wid+",height="+hei+",location="+loca+",menubar="+menu+",resizable="+resiz+",scrollbars="+scroll+",status="+status+",toolbar="+tool;
	window.open(url,w_name, options);
}


/*--HTMLソース----------------------------------------------
*
*
*<a href="javascript:" onclick="w_open('test.html','TEST','200','200','yes','yes','yes','yes','yes','yes');">[新しいウィンドウを開く]</a>
*
*
----------------------------------------------------------*/