var winloc = window.location.search.substring(1).split('&');
var show = '';
var name = '';
var email = '';
var phone = '';
var address = '';
var city = '';
var state = '';
var zip = '';
var comments = '';
for (x = 0; x < winloc.length; x++){
gpid = winloc[x].split('=');
	if (gpid[0].toLowerCase() == 'show') { show = gpid[1]; }
	if (gpid[0].toLowerCase() == 'name') { name = gpid[1]; }
	if (gpid[0].toLowerCase() == 'email') { email = gpid[1]; }
	if (gpid[0].toLowerCase() == 'phone') { phone = gpid[1]; }
	if (gpid[0].toLowerCase() == 'address') { address = gpid[1]; }
	if (gpid[0].toLowerCase() == 'city') { city = gpid[1]; }
	if (gpid[0].toLowerCase() == 'state') { state = gpid[1]; }
	if (gpid[0].toLowerCase() == 'zip') { zip = gpid[1]; }
	if (gpid[0].toLowerCase() == 'comments') { comments = gpid[1]; }
}
function URLDecode(string)  {
var regex = /\+/g;
return unescape(String(string).replace(regex, ' ')); 
}