function clickclear(thisfield, defaulttext, color) {
	if (thisfield.value == defaulttext) {
		thisfield.value = "";
		if (!color) { color = "444444";	}
		thisfield.style.color = "#" + color;
	}
}
function clickrecall(thisfield, defaulttext, color) {
	if (thisfield.value == "") {
		thisfield.value = defaulttext;
		if (!color) { color = "cccccc";	}
		thisfield.style.color = "#" + color;
	}
}


/*/////// ORIGINAL SCRIPTS ///////*/


function popup(page)
{	popwin = window.open(page,'CST',"toolbar=0,status=0,location=0,directories=0,menubar=0,width=625,height=500,resize='yes',scrollbars=1");
	popwin.window.focus();
}

function subscribeEntry()
{	alert('OK')	}

function newWindow(file,window) 
{	msgWindow=open(file,window,'resizable=yes,width=500,height=500');
	if (msgWindow.opener == null) msgWindow.opener = self;
}

function confirmAction() 
{	return confirm("WARNING: Are you sure you want to delete every item in your shopping cart ??!!!     ")
}

function confirmCheckout() 
{	return confirm("WARNING: Checkout now will remove backordered items from your cart ??!!!")
}
/*
if (top.frames.length != 0){
top.location = "#goto#";
};
*/

