
/*
Script by RoBorg
RoBorg@geniusbug.com
http://javascript.geniusbug.com | http://www.roborg.co.uk
Please do not remove or edit this message
Please link to this website if you use this script!*/



function setVars()
{
	var url = setVars.arguments[0];
	var varStr = '?';

	for(var x=1; x<setVars.arguments.length; x++)
	{
		varStr += escape(setVars.arguments[x]) + '=' + escape(eval(setVars.arguments[x]));
		if(x < setVars.arguments.length-1) varStr += '&';
	}
	//document.location = url + varStr;
        window.open(url + varStr, '', 'location=no, menubar=no, toolbar=no, resizable=yes, scrollbars=yes');
}



function getVars()
{
	varArray = document.location.href.split('?')[1].split('&');

	for(var x=0; x<varArray.length; x++)
	{
		var tmp = varArray[x].split('=');
		eval(unescape(tmp[0]) + '="' + unescape(tmp[1]) + '"');
	}
}



