// Check if jQuery is loaded
if (typeof jQuery == 'undefined') 
{
	document.writeln('<script type="text/javascript" src="'+location.protocol+'//triptender.net/microform/js/jquery-1.4.2.min.js"></script>');
};

function makeFrame(id, width, height, src) 
{
   ifrm = document.createElement("IFRAME");
   ifrm.setAttribute("src", src);
   ifrm.setAttribute("id", id);
   ifrm.style.width = width+"px";
   ifrm.style.height = height+"px";
   document.body.appendChild(ifrm);
};

function makeDIV(id, cssText, targetDIV)
{	
	var divNode = document.createElement("div");
	divNode.setAttribute("id", id);
	divNode.style.cssText = cssText;
	//document.body.appendChild(divNode);
	jQuery(targetDIV).append(divNode);
};

function insertCSS(href)
{
	var headID = document.getElementsByTagName("head")[0];         
	var cssNode = document.createElement('link');
	cssNode.type = 'text/css';
	cssNode.rel = 'stylesheet';
	cssNode.href = href;
	//cssNode.media = 'screen';
	headID.appendChild(cssNode);	
};

function insertJS(src)
{
	var headID = document.getElementsByTagName("head")[0];         
	var newScript = document.createElement('script');
	newScript.type = 'text/javascript';
	newScript.src = src;
	newScript.readyState == 'complete';
	headID.appendChild(newScript);
};

// Init Micro Form	tampa.interplex.net
/*<!--[if IE]>
	<style type="text/css">html, body {border:0;overflow:visible;}</style>
<![endif]-->');*/
function init_micro_form(agentid, key, target, metro, station1, default_tab, metro2, station2, default_poi1, default_poi2, cc, cc2, style, lang)
{	
  jQuery(document).ready(function(){ //http://dev.triptender.eu/cvs/triptender.net/microform
		makeDIV('_micro_form_', 'clear: both; height: 317px; width: 362px;', '#'+target);
		jQuery('#_micro_form_').html('<iframe class="microform2" src="'+location.protocol+'//triptender.net/microform/microform2.php?agent='+agentid+'&key='+key+'&ma='+metro+'&station1='+station1+'&def_tab='+default_tab+'&ma2='+metro2+'&station2='+station2+'&def_poi1='+default_poi1+'&def_poi2='+default_poi2+'&current_country='+cc+'&current_country2='+cc2+'&style='+style+'&lang='+lang+'&protocol='+location.protocol+'" height="100%" width="100%" scrolling="no" frameborder="0" marginheight="0" marginwidth="0" style="border-width:0px; margin-left:0px; margin-top:0px;"></iframe>');
		//jQuery('#_micro_form_').html('<object id="microform_object" classid="clsid:25336920-03F9-11CF-8FD0-00AA00686F13" type="text/html"  border="0" data="http://localhost/interplex/tampa/microform2/microform2.php?agent='+agentid+'&key='+key+'&ma='+metro+'" style="width:100%;height:100%;"></object>');
  });	// close document.ready
};
