﻿/**
 * Set target html document for main iframe
 **/
function setURL(URL_string)
{
    document.getElementById('KIAcontentFrame').src = URL_string;
   
    document.getElementById('container').style.height = 414 + "px";
}

function iframeOnLoad()
{
/*document.getElementById('container').class = 'containerShow';*/
var portal='http://www.kiamotors.cz/';
var a = document.URL.split("//"); // split at protocol
a = (a[1] ? a[1] : a[0]).split("?"); 

// use last element of a; split at /
// host is a[0]; path is a[1..(n-1)]; a[n] is page

if(a[1] == null || a[1] == "")
{
   	document.getElementById('KIAcontentFrame').src = portal;
	document.getElementById('container').style.height = 388 + "px";
    return;
}
else
{
    a = (a[1] ? a[1] : a[0]).split("="); 
    document.getElementById('KIAcontentFrame').src = portal + 'showroom/' + a[1];
	document.getElementById('container').style.height = 414 + "px";
}



}