
/* ポップアップウインドウ */
function popupWin(theURL){
	this.pwin = window.open(theURL,'popup','scrollbars=yes,resizable=yes,width=640,height=790');
}


/* ポップアップウインドウ */
function popupWinWide(theURL){
	this.pwin = window.open(theURL,'popup','scrollbars=yes,resizable=yes,width=840,height=840');
}


/* ポップアップレシピ */
function PopupRecipe(theURL){
	this.pwin = window.open(theURL,'popup','scrollbars=yes,resizable=yes,width=640,height=595');
}

/* ポップアップ動画 */
function PopupMovie(theURL){
	this.pwin = window.open(theURL,'popup','scrollbars=yes,resizable=yes,width=640,height=645');
}

/* ポップアップ動画（大画面） */
function PopupFullMovie(theURL){
	this.pwin = window.open(theURL,'popup','scrollbars=yes,resizable=yes,width=980,height=620');
}

