<!--

function validateAngle(source, args){
var strText = args.Value;
if (strText.indexOf("<")==-1 && strText.indexOf(">")==-1) {
args.IsValid = true;
}
else
{args.IsValid=false;}
}

if (document.images)
{
	navitem1on = new Image();
	navitem1on.src = rootPath + "/images/frame/hdr_btn_on2.gif";
	navitem1off = new Image();
	navitem1off.src = rootPath + "/images/frame/hdr_btn_on1.gif";
	navitem2on = new Image();
	navitem2on.src = rootPath + "/images/frame/hdr_viewcart_on.gif";
	navitem2off = new Image();
	navitem2off.src = rootPath + "/images/frame/hdr_viewcart.gif";
	navitem3on = new Image();
	navitem3on.src = rootPath + "/images/frame/hdr_myaccount_on.gif";
	navitem3off = new Image();
	navitem3off.src = rootPath + "/images/frame/hdr_myaccount.gif";
}

function Highlight()
{

	strImgSrc = window.event.srcElement.src;	
	strImgSrc = strImgSrc.substring(0,strImgSrc.length - 5) + "2.gif";
	window.event.srcElement.src=strImgSrc;
}
function Lowlight()
{

	strImgSrc = window.event.srcElement.src;
	strImgSrc = strImgSrc.substring(0,strImgSrc.length - 5) + "1.gif";
	window.event.srcElement.src=strImgSrc;
}

function imgOn(imgName) {

	if (document.images){
	
      imgOn1=eval(imgName + "on.src");
      //alert(imgOn1);
      document[imgName].src= imgOn1;

}
	    
}

function imgOff(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "off.src");
	} 	
}

function SelectBoxRedir(list)
{
	location.href = list.options[list.selectedIndex].value
}
var wwd = 400;
var wht = 450;
var toolb = "yes";
var loc = "yes";
var stat = "yes";
var toolbox ='location=no,toolbar=no,status=no';
var windowname = "win2";

//if tools argument is to be passed, it should include boolean values for location, toolbar and status
//if no parameters are passed, default window of arbitrary size with default toolbox values will be filled in.
function openWin(url, ww, wh, tools, winname) {
	if (tools == null) { tools = toolbox; }
	if (winname == null) winname = windowname;
	mywin = window.open(url, winname, tools+',menubar=no,directories=no,scrollbars=no,resizable=no,width=' +ww+ ',height=' +wh);
}	
	//if (NSbrowser) {mywin.focus()}; //this won't work with IE

-->