function QuickLinksStart()
{
var output='';
output+='<table id="contenttab" cellSpacing="0" cellPadding="0" width="720" border="0">';
output+='<TBODY><tr><td width="7"><IMG height="1" alt="" src="sites/images/c.gif" width="7" border="0"></td>';
output+='<td width="110"><!--nPoint(Announcement): Quick Links-->';
output+='<table cellSpacing="0" cellPadding="0" width="147" border="0">';
output+='<tr><td style="FONT-SIZE: 8px">&nbsp;</td></tr><tr>';
output+='<td><IMG title="Quick Links" height="12" alt="Quick Links" src="sites/images/h2_quicklinks.gif"';
output+='width="81" border="0"></td></tr><tr>';
output+='<td class="bgnews"><IMG height="3" alt="" src="sites/images/c.gif" width="1" border="0"></td>';
output+='</tr></table><table cellSpacing="0" cellPadding="0" width="147" border="0">';
//output+='<tr><td class="bdot" width="9" rowSpan="2">';
//output+='<div class="bdot"><IMG height="3" alt="" src="sites/images/dot_red.gif" width="3" vspace="2" border="0"></div>';
//commented crit updates link on Aug 8,2006 - Anand
//output+='</td><td vAlign="top"><h6><A class="h6link" style="FONT-SIZE: 9px; COLOR: #333333" href="WhatsNew.aspx">Critical Updates</A></h6></td></tr>';
//output+='<tr><td height="1"></td></tr>';
output+='<tr><td class="bdot" width="9" rowSpan="2">';
output+='<div class="bdot"><IMG height="3" alt="" src="sites/images/dot_red.gif" width="3" vspace="2" border="0"></div>';
output+='</td><td vAlign="top"><h6><A class="h6link" style="FONT-SIZE: 9px; COLOR: #333333" href="LSOverview.aspx">Overveiw ';
output+='of Loop Scout</A></h6></td></tr><tr><td height="1"></td></tr><tr>';
/*output+='<td class="bdot" width="9" rowSpan="2"><div class="bdot"><IMG height="3" alt="" src="sites/images/dot_red.gif" width="3" vspace="2" border="0"></div>';
output+='</td><td vAlign="top">';
output+='<h6><A class="h6link" style="FONT-SIZE: 9px; COLOR: #333333" href="UploadData.aspx">Upload Data</A></h6>';
output+='</td></tr><tr><td height="1"></td></tr><tr><td class="bdot" width="9" rowSpan="2">';
output+='<div class="bdot"><IMG height="3" alt="" src="sites/images/dot_red.gif" width="3" vspace="2" border="0"></div>';
output+='</td><td vAlign="top">';
output+='<h6><A class="h6link" style="FONT-SIZE: 9px; COLOR: #333333" href="ObtainReport.aspx">Obtain Reports</A></h6>';
output+='</td></tr><tr><td height="1"></td></tr><tr>';*/
output+='<td class="bdot" width="9" rowSpan="2">';
output+='<div class="bdot"><IMG height="3" alt="" src="sites/images/dot_red.gif" width="3" vspace="2" border="0"></div>';
output+='</td><td vAlign="top">';
output+='<h6><A class="h6link" style="FONT-SIZE: 9px; COLOR: #333333" href="Downloads.aspx">Downloads</A></h6>';
output+='</td></tr><tr><td height="1"></td></tr><tr><td class="bdot" width="9" rowSpan="2">';
output+='<div class="bdot"><IMG height="3" alt="" src="sites/images/dot_red.gif" width="3" vspace="2" border="0"></div>';
//output+='</td><td vAlign="top">';
//output+='<h6><A class="h6link" style="FONT-SIZE: 9px; COLOR: #333333" href="Support.aspx">Support</A></h6></td></tr><tr>';

//output+='<td height="1"></td></tr><tr><td class="bdot" width="9" rowSpan="2"><div class="bdot"><IMG height="3" alt="" src="sites/images/dot_red.gif" width="3" vspace="2" border="0"></div>';
output+='</td><td vAlign="top">';
output+='<h6><A class="h6link" style="FONT-SIZE: 9px; COLOR: #333333" href="ContactUs.aspx">Contact Us</A></h6>';
output+='</td></tr><tr>';

output+='<td height="1"></td></tr></table><!-- /Quick Links --></td><!-- /left col -->';
output+='<td width="10"><IMG height="1" alt="" src="sites/images/c.gif" width="10" border="0"></td>';
output+='<!-- center col --><td width="406"><div id="artmaincontent">';
							
document.write(output);
}

function QuickLinksEnd()
{
	var output='';
	output+='</div></td></tr></table>';
	document.write(output);
}

function checkspace(fldTxt)
{
	var str= new String(fldTxt);
	if ( str.length < 1)
		return true;
	else
		return false;
}

function checkSingleQuote(fldTxt)
{
	var str=new String(fldTxt);
	for(i=0;i<str.length;i++)
	{
		var c=str.charAt(i);
		if(c=="'")
		{
			alert("You cannot enter ' symbol in this field.");
			return true;
		}
	}
	return false;
}

function checkForInjection(fldTxt)
{
	var str=new String(fldTxt);
	for(i=0;i<str.length;i++)
	{
		var c=str.charAt(i);
		if(c==";")
		{
			alert("You cannot enter ; symbol in this field.");
			return true;
		}
		if(c=="-")
		{
			if(str.charAt(i-1)=="-"||str.charAt(i+1)=="-")
			{
				alert("You cannot enter -- symbol in this field.");
				return true;
			}
		}
	}
	return false;
}

function checkNumbers(fldTxt)
{
	var str=new String(fldTxt);
	for(i=0;i<str.length;i++)
	{
		var c=str.charAt(i);
		if(c<"0"||c>"9")
		{
			if(c!="+" && c!="-" && c!=" ")
			{
				alert("Please enter only numbers in Contact Phone field.");
				return true;
			}
		}
	}
	return false;
}

