
//


//<script>

// Default window ornaments for the live help dialog
var _liveHelpDialogFeature = "status=1,width=500,height=400,resizable=1";



function WriteLiveSupportButton()
{


	var ImageURL='http://www.rosenmeier.dk/images/offlinegray.gif';

	ImageURL= "<img  title=\"support chat\" src=\""+ImageURL+"\" border=0>";

	// write the live support button to the page
	document.write('<a href=\"###\" onclick=\"OpenLiveSupport()\">'+ImageURL+'</a>');

}

WriteLiveSupportButton();

function OpenLiveSupport()
{
	var url='http://www.rosenmeier.dk/LiveSupport/CuteSoft_Client/CuteChat/SupportRedirect.aspx?Referrer=%26username%3d%26department%3dHelpdesk%26email%3d&_time="+(new Date().getTime())&username=&department=Helpdesk&email=&question=';
	var win;
	try
	{
		win=window.open(url,'',_liveHelpDialogFeature);
	}
	catch(x)
	{
	}
	
	if(win==null)
	{
		alert("Pop-up Blocker Detected.");
	}
}


