// checkHypnos - Checks to see if a Hypnos item is in stock or not.
//
// Required:
//		number - Hypnos stock number.
//		altURL - Alternative URL to redirect to when Hypnos is OOS.
//
// Hypnos URL example (Convergence CD):
//
// http://www.hypnos.com/mm5/merchant.mvc?Screen=PROD&Store_Code=HOS&Product_Code=austere04&Category_Code=austere

function checkHypnos(number, altURL) {

	var DEBUG = false;
	if (DEBUG) alert('Called checkHypnos('+ number + ', '+ altURL +')');

	// PHP server-side "backend" script to call to try a Hypnos product number
	// via a standardized URL, returning either a link or a link to the
	// Austere site for the often out-of-stock products.

	var url = "/include/CheckHypnosPage.php?num="+ number +"&altURL="+ altURL;
	if (DEBUG) alert('url='+ url);
	location.replace(url);
} // checkHypnos
