<!--
function DetailValidation(txtid)
  {
               
                try
                 {
               
                
                 window.document.Form2.elements[txtid].title="Product Quantity";
                 window.document.Form2.elements[txtid].number=true;
                
                 }
                 catch(e)
                 {
               // alert(e)
                 }
              
				return ValidateForm(window.document.Form2)
    }
function CloseView()
{
	var sFeatures, h, w, myThanks, i
	h = window.screen.availHeight 
	w = window.screen.availWidth 
	sFeatures = "height=" + h*.50 + ",width=" + h*.50 + ",screenY=" + (h*.30) + ",screenX=" + (w*.33) + ",top=" + (h*.30) + ",left=" + (w*.33) + ",resizable,scrollbars=yes"
	myThanks = window.open("CloseUp.aspx?uid=" + window.document.Form2.SwatchID.value,"",sFeatures)
}
//-->
//browser check
var ie = (document.all) ? true : false
var ns = (document.layers) ? true : false



function chgImg(imgField,newImg,UID) {
			if (ns) {eval('window.document.Form2.images[imgField].src = '+newImg+'.src')}
			else {window.document.Form2[imgField].src = eval(newImg+'.src')}
			window.document.Form2.SwatchID.value=UID
}

function preload(imgObj,imgSrc) {
	if (document.images) {
		eval(imgObj+' = new Image()'); 
		eval(imgObj+'.src = "'+imgSrc+'"');
	}
}
