﻿function InsertHTML( obj, html )
{
	obj.innerHTML = html;
}

// Clientside Bookingcontext
function InitNameValueCollection()
{
	var values = location.search.slice(1).split("&");
	for( var i in values )
	{
		var pair = values[i].split("=");
		__NVC[pair[0]] = pair[1];
	}
}

function popUp(url,w,h,resize)
{ 
	var leftPos = (window.screen && window.screen.width) ? Math.round((window.screen.width - w - 10) / 2) : 50;
	var topPos  = (window.screen && window.screen.height) ? Math.round((window.screen.height - h - 29) / 2) : 50;
	var resizable = resize ? 'resizable,' : '';
	var popupWin = window.open(url, 'popup', 'scrollbars,' + resizable + 'height=' + h + ',width=' + w + ',top=' + topPos + ',left=' + leftPos);
}

var __NVC = new Object();
InitNameValueCollection();