//ポップアップ
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function popupOpen(url,sizeWidth,sizeHeight){
		windowSize="width="+sizeWidth+",height="+sizeHeight+",scrollbars=yes,left=0, top=0";
			window.open(url,"",windowSize);
}
