
<!--
	
function PopupWindow(strURL,strName,strWidth,strHeight)
	{
	var hWindow;
	hWindow = window.open(strURL , strName, 'dependent=yes, hotkeys=no, titlebar=no, fullscreen=no, channelmode=no, toolbar=no, location=no, directories=no, status=no, menubars=no, resizable=no,' + strWidth + ', ' + strHeight + ', top=150, left=216');
	}


function click() 
	{
	if (event.button==2) 
		{
		alert('Copyright laptray.nl');
		}
	}
	document.onmousedown=click
	


// OUD

function init() 
	{
		init_dom();
		init_mo();
	}
		
function tellafriend() 
	{
		popUp('popup_sendAFriend.php?link='+escape(document.location.href), 'SendAFriend', '369', '400');
	}
		
function popUp(nurl, nname, iw, ih) 
	{
		var ileft=(screen.width/2)-(iw/2);
		var itop=(screen.height/2)-(ih/2);
		var nwidth = 'width='+iw;
		var nheight = 'height='+ih;
		var nproperties = nwidth+','+nheight+',scrollbars=auto,left='+ileft+',top='+itop;
		window.open(nurl, nname, nproperties);
	}
function enableField()
	{
		document.getElementById('btnSubmit').style.visibility = "hidden";
		document.getElementById('cboCountry').style.visibility = "hidden";
		document.getElementById('Betalingsmethode').style.visibility= "hidden";
		return true;
	}	

//-->
			
		