
function openSimpleWindow(inUrl,inWidth,inHeight){if(screen.availWidth<inWidth){inWidth=screen.availWidth;}
if(screen.availHeight<inHeight){inHeight=screen.availHeight;}
var l=Math.floor((screen.availWidth-inWidth)/2);var t=Math.floor((screen.availHeight-inHeight)/2);var option="left="+l+",top="+t+",width="+inWidth+",height="+inHeight+",";option+="location=no,menubar=no,directories=no,dependent=yes,";option+="resizable=yes,scrollbars=yes,status=no,toolbar=no";win=window.open(inUrl,"simpleWindow",option);return win;}
function notifyNewContactMessageCanceled(){if(confirm("送信をとりやめてこのウィンドウを閉じます。よろしいですか？")){window.close();}}
function deleteConfirm(){return confirm("削除を行いますと、元には戻せなくなります。本当によろしいですか？");}
function openMultiMediaWindow(inMMID,inItemID,inType){var w,h;switch(inType.toUpperCase()){case'SWF':w=530;h=620;prop="scrollbars=no,resizable=yes";break;case'MOV':case'FLV':w=420;h=480;prop="scrollbars=no,resizable=yes";break;case'JPG':case'GIF':case'PNG':w=530;h=620;prop="scrollbars=no,resizable=yes";break;case'PDF':w=800;h=700;prop="scrollbars=yes,resizable=yes";break;case'QUIZ':w=455;h=455;prop="scrollbars=yes,resizable=yes";break;case'PTV':w=420;h=330;prop="scrollbars=no,resizable=no";break;default:w=530;h=620;prop="scrollbars=yes,resizable=yes";}
l=Math.floor((screen.availWidth-w)/2);t=Math.floor((screen.availHeight-h)/2);var openw=window.open("../mm/item.php?mm_id="+inMMID+"&item_id="+inItemID,"mm_"+inType,"left="+l+",top="+t+",width="+w+",height="+h+","+prop);if(inType!='pdf'&&openw){openw.window.focus();}}