<!--

function customSplit(strvalue, separator){
	var n = 0;
	var temp;
	var separated = new Array();
	if (separator.length != 0) {
		while (strvalue.indexOf(separator) != -1) {
			temp = eval("arr"+n+" = strvalue.substring(0, strvalue.indexOf(separator));");
			separated[n]=temp;
			strvalue = strvalue.substring(strvalue.indexOf(separator)+separator.length, strvalue.length+1); 
			n++;
		}
		eval("arr" + n + " = strvalue;");
		arraySize = n+1;
		separated[n]=strvalue;
	}else { 
		for (var x = 0; x < strvalue.length; x++) {
		temp = eval("arr"+n+" = \"" + strvalue.substring(x, x+1) + "\";");
		separated[n]=temp;
		n++;
		}
		arraySize = n;
	}
	return separated;
}

function call_aff(){
	var idnum = window.location.search.substring(1);
	if (idnum) {
		splited_array = customSplit(idnum,'_');
		var valuemn = splited_array[0];
		var valuesub = splited_array[1];
		if (valuemn) {
			document.write('<IMG border = "0" height = "1" width = "1" src="http://www.amazingwebproducts.com/ls/c.cgi/' + valuemn + '">');
		}
	}
}

function TimStatus(message)
{
    window.status=message;
}
function SetStatus(message)
{
    window.status=message;
    setTimeout('TimStatus("'+message+'")',1);
}
//SetStatus(' ');
-->