//<!
	
function PrintDate () 
{
	var dayNames = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday",
		"Friday","Saturday");
    	var monthNames = new Array( "January","February","March","April","May","June",
		"July","August","September","October","November","December");
      	var now = new Date();
      	var year = now.getYear();

    	document.write(dayNames[now.getDay()] + ", " + 
        	   monthNames[now.getMonth()] + " " + now.getDate() + ", " + year + 
	   	". "); 
}

function WriteHeader (a_title)
{
  	document.open ();
	document.write ("<HEAD> <TITLE>" + a_title +  "</TITLE>");
	document.write ('</HEAD>');
	document.write ('<link rel="StyleSheet" href="main.css" type="text/css">');
	document.write ('<link rel="StyleSheet" href="print.css" media=print type="text/css">');
	document.write ('<BODY>');
//  	document.write ('<div class=noprint>');
    	document.write ("<table><tr><td>");
  	
	document.write ("<table cellpadding=10 cellspacing=0 width=800  background=body-bg.jpg border=0><tr><td>");

//	document.write ("<table cellpadding=10 cellspacing=0 width=800  bgcolor=#B5AA8A border=0><tr><td>");
	document.write ('<a href=index.html><IMG SRC="soft2.gif" ALT="SoftMark, Inc." WIDTH=160 height=54 border=0></a>&nbsp;&nbsp;&nbsp;<script>PrintDate()</script>');

	document.write ('<td align=right valign=bottom><a href=resources.htm><font color=#804000">Resources</font></a>');
	document.write ('<br><a href=customers.htm><font color=#804000">Customers</font></a>');
	document.write ('<br><a href=inquiry.htm><font color=#804000">Contact Us</font></a>');
	document.write ('<br><a href=comp_prf.htm><font color=#804000">About</font></a>');
	document.write ("</table>");
	document.write ('');
    	
    	                                                  
	// ------------ Main Menu ------------ 
    	document.write ("<tr bgcolor=#05467A><td>");
	document.write ('<TABLE BORDER=0 cellspacing=0 class=MenuBar  width=100%>');
	document.write ('<TR>');
 	document.write ('<TD width=25% class=MenuBar  align=center onClick=javascript:location.href="va.htm"><IMG SRC="blue-nav-arrow.gif" WIDTH=5 HEIGHT=7 ALT="" BORDER=0>&nbsp;&nbsp;VOS-Auditor');

	document.write ('<TD width=25% class=MenuBar  align=center onClick=javascript:location.href="dms.htm"><IMG SRC="blue-nav-arrow.gif" WIDTH=5 HEIGHT=7 ALT="" BORDER=0>&nbsp;&nbsp;VOS DR-Hot-Backup');

	document.write ('<TD width=25% class=MenuBar  align=center onClick=javascript:location.href="vos_ess.htm"><IMG SRC="blue-nav-arrow.gif" WIDTH=5 HEIGHT=7 ALT="" BORDER=0>&nbsp;&nbsp;VOS-Essentials');

	document.write ('</table>');


	<!---   The main window   -->
//	document.write ('<tr><td bgcolor=white width=770>');
	document.write ('<tr><td background=light_background.gif width=770>');
	
}


function WriteFooter ()
{
  	document.open ();
   	document.write ('<div class=noprint>');
	document.write ('<tr><td><TABLE BORDER=0 cellspacing=0 class=MenuBar width=100%>');
	document.write ('<TR bgcolor=#05467A>');
	document.write ('<TD class=MenuBar width=33% onClick=javascript:location.href="inquiry.htm">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<IMG SRC="blue-nav-arrow.gif" WIDTH=5 HEIGHT=7 ALT="" BORDER=0>&nbsp;&nbsp;Contact us');
	document.write ('<TD class=MenuBar width=33% align=center onClick=javascript:location.href="index.html">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<IMG SRC="blue-nav-arrow.gif" WIDTH=5 HEIGHT=7 ALT="" BORDER=0>&nbsp;&nbsp;Home');
	document.write ('<TD align=right class=MenuBar  width=33% onClick=javascript:location.href="legal.htm"><IMG SRC="blue-nav-arrow.gif" WIDTH=5 HEIGHT=7 ALT="" BORDER=0>&nbsp;&nbsp;&copy; 2008 SoftMark&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;');
  	document.write ('</div>');
 	
	document.write ('</table>');
	document.write ('</BODY>');
	document.write ('</HTML>');
	document.close ();
}

<!----------------- Start code here ----------------- >
//>

