function gUrlParam( name )
{
	name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
	var regexS = "[\\?&]"+name+"=([^&#]*)";
	var regex = new RegExp( regexS );
	var results = regex.exec( window.location.href );
	if( results == null )
		return "";
	else
		return results[1];
}

function checkIfIFrameIsSet()
{
	var iframeset = gUrlParam('iframeset');
	if (iframeset != 'yes')
	{
		var sPath = window.location.pathname;
		var current_page = sPath.substring(sPath.lastIndexOf('/') + 1);
		//Do the redirect
//		window.location.href = "http://www.cartrack.co.za/index.html?loadframe=" + current_page;
	}
}

