browsr = navigator.appName;
vers = parseInt(navigator.appVersion);
if (browsr == "Netscape" && vers >= 3) browstatus = "ns3";
else if (browsr == "Microsoft Internet Explorer" && vers >= 4) browstatus ="ie4";
else (browstatus = "non");
if (browstatus=="ns3" || browstatus=="ie4") {
var x;
var ovr = new Array; // storage for mouseover image names
var out = new Array; // storage for mouseout image names
var pic = new Array; // storage for mouseover image file names
// List replacement mouseOver image files here:

ovr[0] ="../images/menu/about1.jpg";
ovr[1] ="../images/menu/contact1.jpg";
ovr[2] ="../images/menu/home1.jpg";
ovr[3] ="../images/menu/custom1.jpg";
ovr[4] ="../images/menu/remodel1.jpg";
ovr[5] ="../images/menu/historical1.jpg";
ovr[6] ="../images/menu/cool1.jpg";
ovr[7] ="../images/menu/furniture1.jpg";

// End replacement image file list
for (x=0; x <ovr.length; x++) {
pic[x] = new Image;
pic[x].src = ovr[x];
}}

function hilite(imgNum) {
if (browstatus=="ns3" || browstatus=="ie4"){
out[imgNum] = document["img" + imgNum].src;
document["img" + imgNum].src = ovr[imgNum];
}}

function normal(imgNum) {
if (browstatus=="ns3" || browstatus=="ie4")
  document["img" + imgNum].src = out[imgNum];}

function open_windowTayMap(url) {  
newwin = window.open(url,"image",'width=640,height=480,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=yes');
setTimeout("newwin.focus();",250); }

function open_windowTay320(url) {  
newwin = window.open(url,"image",'width=320,height=480,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=yes');
setTimeout("newwin.focus();",250); }

function open_windowPop(url) {mywin = window.open(url,"popup",'width=300,height=400, toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=no');}

function open_windowTay640H(pFileName) {
pWindow = window.open( "", "photo", "width=700,height=525,status=0,scrollbars=yes,resizable=yes,screenX=10,screenY=10,left=20,top=40");
pWindow.document.write('<html><head><title>' + pFileName + '</title></head>');
pWindow.document.write('<BODY BGCOLOR=#999999 TEXT=#000000 LINK=#000000 VLINK=#000000>');
pWindow.document.write('<center>');
pWindow.document.write('<table border=2 cellpadding=0 cellspacing=0><tr><td>');
pWindow.document.write('<a onClick="javascript:window.close();">');
pWindow.document.write('<img src="' + pFileName + '"></a><p>');
pWindow.document.write('</td></tr></table>');
 pWindow.document.write('<font face="verdana,arial,helvetica" size="-2">');
pWindow.document.write('Click image to close...');
pWindow.document.write('</font></center></body></html>');
pWindow.document.close();
pWindow.focus();
}

function open_windowTay640V(pFileName) {
pWindow = window.open( "", "photo", "width=500,height=685,status=0,scrollbars=yes,resizable=yes,screenX=10,screenY=10,left=20,top=40");
pWindow.document.write('<html><head><title>' + pFileName + '</title></head>');
pWindow.document.write('<BODY BGCOLOR=#999999 TEXT=#000000 LINK=#000000 VLINK=#000000>');
pWindow.document.write('<center>');
pWindow.document.write('<table border=2 cellpadding=0 cellspacing=0><tr><td>');
pWindow.document.write('<a onClick="javascript:window.close();">');
pWindow.document.write('<img src="' + pFileName + '"></a><p>');
pWindow.document.write('</td></tr></table>');
 pWindow.document.write('<font face="verdana,arial,helvetica" size="-2">');
pWindow.document.write('Click image to close...');
pWindow.document.write('</font></center></body></html>');
pWindow.document.close();
pWindow.focus();
}

