function clearField(field, intValue){

            if (field.value == intValue){
                        field.value = "";
            }

             return 1;

}

function WinOpen3(theurl, width, height) {

        var open_options = "scrollbars=no,titlebar=no,resizable=no,scrollbar=no,locationbar=no,location=no,menubar=no,personalbar=no,statusbar=no,toolbar=no,width=" + width + ",height=" + height;
        win3=open(theurl,"Window3", open_options);
        win3.focus();
}

$(document).ready(function(){

	$("#newproducts").load('/cgi-bin/load.newproducts.cgi');
	$("#whatsnew").load('/cgi-bin/load.whatsnew.cgi');

});
 
