//オープンウィンドウ
function OpenWindow( url, width, height, options, name ){
  if(!width) width = 270;
  if(!height) height = 350;
  if(!options) options = "scrollbars=no,menubar=no,toolbar=no,location=no,status=yes,resizable=no";
  if(!name) name = "outsideSiteWindow";

  var newWin = window.open( url, name, "width=" + width + ",height=" + height + "," + options );
}
//