﻿//General javascript for KidSurplus.
//This is javascript that doesn't apply to a particular page.
//Item detail and checkout javascript shouldn't go here.


function setDefault(defaulttxt,e) {
    var el;
    if (document.getElementById(e)) {
        el = document.getElementById(e);
        if (el.value==defaulttxt) {
            el.value = "";        
        }         
    }
}


function resetDefault(defaulttxt,e) {
    var el;
    if (document.getElementById(e)) {
        el = document.getElementById(e);
        if (el.value=="") {
            el.value = defaulttxt;        
        }         
    }
}

function openSuper(itemNo) {        
    window.open("supersize.asp?item="+itemNo,null,"height=400,width=500,scrollbars=yes,status=no,toolbar=no,resizable=1");
}

function getCartInfo()
{
	var strCookie;
		
	strCookie = readCookie("snap%5fcart");
	
	//alert(strCookie);
	

}
