// JavaScript Document
window.showContactForm =function (src, lang, cssFile, containerId, redirectURL, queryOpts) {
	var refURL = '(direct)';
	var keywords = 'noCookie';
	if(typeof(document.cookie)!="undefined"){
	try{
    var cookie = document.cookie; 
	var aTmp = cookie.split("|");
    var aRef = aTmp[1].split("=");
    var aKey = aTmp[2].split("=");
    var refURL = aRef[1];
	var keywordsTmp = aKey[1].split(";");
    var keywords = keywordsTmp[0];
	}
	catch(e){
	//nothing	
	}
	}
	if(typeof(redirectURL)=="undefined"){
	var redirectURL = '';
	}        
    var iFrame = document.createElement("IFRAME");
    iFrame.width = 550;
    iFrame.height = 850;
    iFrame.allowTransparency = "yes";
    iFrame.frameBorder = "0";
    iFrame.scrolling = "no";
	iFrame.title = Math.random()*50;
	var src = "http://www.latinoaustralia.com/database/DBscripts/contact-us/contact.inc.php?src="+src+"&css="+cssFile+"&lang="+lang+"&referralURL="+refURL+"&kwords="+keywords+"&redirectURL="+redirectURL+"&"+queryOpts;
	iFrame.src = src;
    
    if (containerId!=false && document.getElementById(containerId)) {
        var cnt = document.getElementById(containerId);
        cnt.appendChild(iFrame);
    }
    else {
        return iFrame;//Retorna el objeto iframe
    }
	
}
