// Copyright 2009 Lowbudgettranslations.com

function iframeloaded()
{
	if (window.name == "" || window.name.match(/\%3Cbody\%3E\%3C\/body\%3E/i))
	{
		var doc = iframedoc(frames['Wizard']);
		if (doc.getElementById('_T9119_') != null)
		{
			doc.getElementById('_T9119_').value = document.referrer != "" ? escape(document.referrer) : "Unknown";
		}
		window.name = escape(doc.getElementsByTagName("html")[0].innerHTML);
	}
}

function pageloaded()
{
	if (window.name == "" || window.name.match(/\%3Cbody\%3E\%3C\/body\%3E/i))
	{
		frames['Wizard'].location.href = wizlocation;
	}
	else 
	{
		var doc = iframedoc(frames['Wizard']);
		doc.open();   
		doc.write(unescape(window.name));   
		doc.close();
	}
}

function iframedoc(iframe)
{
	var doc = frames['Wizard'].document;
	return doc;
}

function resetwiz()
{
	window.name = '';
}

function kicklead(ip_strConf) {
	var el = document.createElement("iframe");
	el.setAttribute('id', 'ifrm');
	el.setAttribute('width', '0');
	el.setAttribute('height', '0');
	document.body.appendChild(el);
	el.setAttribute('src', ip_strConf);
}