//Script gen_func.js


function gf_curr_year() {  
  var pdate = new Date();
  return pdate.getFullYear();
}

function visoff(id) {
  document.getElementById(id).style.visibility="hidden";
}

function vison(id) {
  document.getElementById(id).style.visibility="visible";
}

function swfwin(file) {

  var swf_file = 'http://www.oldemill.com/furniture/' + file + '/' + file + '.swf';

  flashwindow = window.open("","flashwindow","toolbar=no, top=30, left=30, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=800, height=630");
   
  var swf_data = '<html><head><style type="text/css">div.right{position:absolute;top:5px;right:5px;} body.mod{font-family: verdana, helvetica, sans-serif;font-size: 12px;color: #0c0c0c; background-color:#ffffff;} a:link {color: #0c0c0c; text-decoration: underline; font-size: 12px; font-family: verdana, helvetica, sans-serif;} a:visited {color: #1c7366; text-decoration: underline; font-size: 12px; font-family: verdana, helvetica, sans-serif;} a:hover {font-size: 12px; text-decoration: underline; font-family: verdana, helvetica, sans-serif;}</style></head><body class="mod"><div class="right"><a href="javascript: self.close ()">close window [x]</A></div><div style="position:absolute;top:30px;left:0px;"><OBJECT codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" WIDTH="800" HEIGHT="600"><PARAM NAME="Furnswf" VALUE="' + swf_file + '"><PARAM NAME=quality VALUE=high><EMBED src="' + swf_file + '" quality=high WIDTH="800" HEIGHT="600" NAME="omMovie" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"> </EMBED></OBJECT></div></body></html>';

  flashwindow.document.write(swf_data);
  
  flashwindow.focus();

}

