// JavaScript Document
// 
function DoItAll(Url,Title,MenuNode) 
{
	if (top.frames.length==0) 
	{
		if(document.domain != "www.unitek.local")		
			var String = "http://www.unitek.dk/index.php?" + encodeURIComponent('id=produkter/' + Url); // Load correct pages in each frame. Encode to preserve all tags.
		else
			var String = "http://www.unitek.local/index.php?" + encodeURIComponent('id=produkter/' + Url); // Load correct pages in each frame. Encode to preserve all tags.
		
		top.location = String;
	}	
	top.document.title=Title;
	setTimeout("top.menu.selectnode("+MenuNode+")",200);					// Open leftpane menu correct.
}
