function previewWindowOpen(value) {

  var ns4=(document.layers)? true:false;
  var ie4=(document.all)? true:false;

  if (ie4) width=((window.document.body.clientWidth)/3)*2;
  if (ns4) width=((window.innerWidth)/3)*2;

  if (ie4) height=((window.document.body.clientHeight)/3)*2;
  if (ns4) height=((window.innerHeight)/3)*2;

  previewWindow=window.open("","preview","scrollbars=yes,toolbar=no,location=no,status=no,menubar=no,resizable=yes,width=" + width + ",height=" + height);

  previewWindow.document.write ('<HTML>');
  previewWindow.document.write ('<HEAD>');
  previewWindow.document.write ('<TITLE>preview</TITLE>');
  previewWindow.document.write ('<link rel="stylesheet" href="./ps_script/style_front.css" type="text/css">');
  previewWindow.document.write ('</HEAD>');
  previewWindow.document.write ('<BODY onBlur="close()" BGCOLOR="#FFFFFF">');
  previewWindow.document.write (value);
  previewWindow.document.write ('</BODY>');
  previewWindow.document.write ('</HTML>');
  previewWindow.document.close();
}

function LoadUrl(s) {
  url = s.item(s.selectedIndex).value;
  document.location = url;
}

