//
// 引越しミシュラン WEBシステム  共通スクリプト
//
// 2007 (c) e-pokke Inc.  All rights reserved.
//


// ********** 別ウィンドウの表示 **********
function openwin(url,width,height,target) {
  if (url != '') {
//    var tg = ( target == '' ) ? '_blank' : target;
    var x = parseInt( window.screen.width/2-width/2 );
    var y = parseInt( window.screen.height/2-height/2 );
    window.open(url,target,"toolbar=no,location=yes,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width="+width+",height="+height+",left="+x+",top="+y+",screenX="+x+",screenY="+y);
  }
}

// ---------- End of File ----------

