/**
	getGetVars v0.1
	Copyright (c) 2009 - HopMultimedias
**/
function getGetVars()
{
	var vars= new Array();
	var hash= unescape( window.location.search ).substr(1).split("&") ;
 
	var index ;
	for ( var i=0; i< hash.length; i++ )
	{
		index= hash[i].indexOf("=");
		
		if( index>=0 ){
			vars[hash[i].substr(0,index)]= hash[i].substr(index+1)
		} else { 
			vars[hash[i]]="";
		}
	}
	return vars ;
}
