function collectibles(mypage, myname, scroll) {	winprops = 'scrollbars='+scroll+',resizable,status,toolbar'	win = window.open(mypage, myname, winprops)	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }}function linkAlert(){	return window.confirm('This is a link to another website. Certain links on this web site lead to resources located on other web sites maintained by third parties over whom Pepsi-Cola Company has no control. Pepsi-Cola Company makes no representations about any other web site or its contents that you may access through this one. In addition, a link to a non-Pepsi-Cola Company web site does not mean that Pepsi-Cola Company endorses or accepts any responsibility for the content, or the use, of such other web site and no link to this web site from any other web site shall be construed to suggest the existence of any endorsement or other relationship by the owners of such other web sites and Pepsi-Cola Company It also is up to you to take precautions to ensure that whatever you select for your use is free of such items as viruses, worms, trojan horses and other items of a destructive nature.');}function popWindow(url,w,h,bars){	if (bars == null){		bars = "no";	}		params='height='+ h +',width='+ w +',top=15,left=15,screenX=15,screenY=15,scrollbars='+ bars +',resizable';	newwin = window.open(url,'newwin',params)	newwin.focus();	}function isEmail(elm) {    if (elm.value.indexOf("@") + "" != "-1" &&        elm.value.indexOf(".") + "" != "-1" &&        elm.value != "")     return true;    else return false;}    function isReady(form){    	if (isEmail(form.email_sub) == false) {     	alert("Please enter a valid email address.");    	form.email_sub.focus();    	return false;    }    subscript = window.open ('email-subscribe.php?subscribe=yes&email_sub=' + form.email_sub.value, 'subscript', 'scrollbars=no,status=no,location=no,toolbar=no,height=60,width=200');    form.email_sub.value = "Enter your email address here";	return false;}function clear_val(elm, text){	if (elm.value == text){		elm.value = "";	}}function enter_val(elm, text){	if (elm.value == ""){		elm.value = text;	}}