/*
*************************************************************************************************
	Customer:		OT Publishing Ltd.
	Author:			Steve Tanner - MSO.net
	Copyright:		Copyright 2009 MSO.net
	File:			/javascript/general.js
	Description:	General functions for the site.
	Mod History:	28-Sep-2009 - MSO7749 - File Created
*************************************************************************************************
*/

// function to logout of site
function logout() {
	if (confirm("Please confirm you wish to logout of Porn-Rewards.com")) {
		window.location= "/logout.cfm";
	}
}

// function to join adult site
function joinSite(int_id) {
	window.open("/joinsite.cfm?site_id="+int_id, "openSite");
	openSite.focus();
}

// function to validate search request
function valSearch(thisForm) {
	var str_value = thisForm.search_text.value;
	if (str_value.length == 0 || str_value == "search for a site") {
		alert("Please enter the name of the site you are searching for.");
		thisForm.search_text.value == "";
		thisForm.search_text.focus();
		return false;
	}
}

