function popIt(strType,strURL,features) {
		intPos = strURL.indexOf('#');
		if ((intPos==-1) || (intPos!=(strURL.length-1))) {

			if (strType=='full') {
				var winWidth 	= (screen.availWidth ? screen.availWidth : 800);
				var winHeight 	= (screen.availHeight ? screen.availHeight : 600);
				var winObj = window.open(strURL,"main","left=0,top=0,width=" + winWidth + ",height=" + winHeight + ",fullscreen=no,resizable=no,scrollbars=no",features);
				if(winObj && winObj.moveTo && winObj.resizeTo) {
					//winObj.moveTo(0,0);
					//winObj.resizeTo((winWidth), winHeight);
					//document.location = 'test.html';
					//winObj.focus();
				} else {
					alert('Could not open the popup.\n\nPlease deactivate the popupblocker.');
				}
			} 
		} else {
			//alert('Ingen link');
		}
}
//popIt('full', 'popup.aspx'); 
