function NewWin(url,windnam){
	if(url !=''){
		win=window.open(url,windnam,"screenX=800,screenY=400,left=800,top=400,width=380,height=350");
		win.focus();
		}
	
}




function openWinb(map){
	  window.open(map,"衆議院選挙徳島三区マップ","width=560,height=410");
	  
}



function close_win(){
  var nvua = navigator.userAgent;
    if(nvua.indexOf('MSIE') >= 0){
      if(nvua.indexOf('MSIE 5.0') == -1) {
        top.opener = '';
      }

    }

    else if(nvua.indexOf('Gecko') >= 0){
      top.name = 'CLOSE_WINDOW';
      wid = window.open('','CLOSE_WINDOW');

    }

  top.close();

}


