/* This script and many more are available free online at
 The JavaScript Source! http://javascript.internet.com */
function right(e) {
var msg = "Email me if you want to see more pics!";
if (navigator.appName == 'Netscape' && e.which == 3) {
alert(msg);
return false;
}
if (navigator.appName ==
'Microsoft Internet Explorer' && event.button==2) {
alert(msg);
return false;
}
else return true;
}

function trap() {
if(document.images)
for(i=0;i<document.images.length;i++)
document.images[i].onmousedown = right;
}

function checkAdult()
{
	var adultstr = "By clicking \"OK\" you affirm the following statements:\n\nI do not find images or descriptions of nude adults, adults engaged in sexual acts, or any other sexual material to be offensive or objectionable.\n\nI affirm that I am at least 18 years of age and have the legal right to possess and view adult material in my community.\n\nI understand the standards and laws of the community, site and computer where I am viewing this material, and am solely responsible for my actions.\n\nIf I use these services in violation of the above statements, I understand I alone am responsible for my actions and cannot hold the creators of this site, the hosts of this site, or my Internet service provider responsible for any violation of local and/or federal laws.  By clicking \"OK\", I will have released and discharged the providers, owners and creators of this site from any and all liability which might arise.\n\nBookmarking to a page on this server or site whereby this warning message is bypassed shall constitute an implicit acceptance of the foregoing terms set forth herein.\n\n\nIf you do NOT agree with any of the above you MUST press the \"Cancel\" button."
	var go = confirm(adultstr);
	if (!go)
		location.href = "http://disney.go.com";
}

function PayPal(time)
{
	var fm = document.forms[0];
	fm.item_name.value = String(time) + " minutes with Trish";
	fm.item_number.value = "PP" + String(time);
	var price;
	switch(time) {
		case 15: price="15.00"; break;
		case 10: price="17.50"; break;
		case 20: price="35.00"; break;
		case 30: price="52.50"; break;
		case 60: price="90.00"; break;
	}
	fm.amount.value = price;
	fm.submit();
}

function Credit(id)
{
	var fm = document.forms[1];
	fm.product_id.value = id;
	fm.submit();
}

