/* 
Workfile: 	CustomFunctions.js
Copyright: 	Copyright 2003 by G1440, Inc. All rights reserved
Author(s): 	Joe Yingling jyingling@g1440.com
Created: 	December 01, 2003
Description: CustomFunctions.js Template
This file contains custom javascript fuctions.
These functions will generally be used by the front-end (ie. UI public sites)
and will most likely vary for each SiteBuilder1440 implementation.
*/ 

function fixNSStretch() {
	var browser_name = navigator.appName;
	// is browser Netscape? If so, write blank table to fix stretching issues in Netscape		
	if(browser_name == "Netscape") {
		document.writeln("<table width='762' height='600' border='0' cellspacing='0' align='center' cellpadding='0'><tr valign='top'>");
		document.writeln("<td width='1' bgcolor='#666666'><img src='images/common/spacer.gif' alt=' ' width='1' height='1'></td>");
		document.writeln("<td width='760' height='600' bgcolor='#000000'><p>&nbsp;</p><br /><br /><br /><br /><br /></td>");
		document.writeln("<td width='1' bgcolor='#666666'><img src='images/common/spacer.gif' alt=' ' width='1' height='1'></td></tr></table>");
	}
	// otherwise, write nothing
	else {
		document.writeln(" ");
	}
}

function fixNSStretchInterior() {
//	var browser_name = navigator.appName;
	// is browser Netscape? If so, write blank table to fix stretching issues in Netscape		
//	if(browser_name == "Netscape") {
		document.writeln("<table width='762' height='50' border='0' align='center' cellpadding='0' cellspacing='0'>");
		document.writeln("<tr><td width='1' bgcolor='#666666'><img src='../images/common/spacer.gif' alt=' ' width='1' height='1' /></td>");
		document.writeln("<td width='760' align='center' valign='top' background='../images/interior/contentredbg.jpg'><table width='760' height='100%' border='0' cellpadding='0' cellspacing='0'>");
		document.writeln("<tr align='left' valign='top'><td class='repeatXInterior'><p>&nbsp;</p></td><td width='243' bgcolor='#000000'>&nbsp; </td></tr></table>");
		document.writeln("</td><td width='1' bgcolor='#666666'><img src='../images/common/spacer.gif' alt=' ' width='1' height='1' /></td></tr></table>");	
//		}
	// otherwise, write nothing
//	else {
//		document.writeln(" ");
//	}
}