//pop-up function. All values can be passed. 
	function winPop(path,name,width,height,scrollbar) {
		window.open(''+path+'',''+name+'','target=new,toolbar=0,location=no,directories=0,status=0,menubar=0,scrollbars='+scrollbar+',resizable=1,width='+width+',height='+height+',top=50,left=200');
	}
	
//just for furniture planner
			function fPopUp( argStrUrl ){
				var vW = 1000;
				var vH = 730;
				var vL = (screen.availWidth) ? (screen.availWidth-(vW-5))/2 : 0;
				var vT = (screen.availHeight) ? (screen.availHeight-(vH+50))/2 : 0;
				if (navigator.userAgent.indexOf("AOL") != -1) vT=0;
				
				var features = "width=" + vW + ",height=" + vH + ",left=" + vL + ",top=" + vT + ",fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,directories=no,location=no";
				newWin = window.open( argStrUrl, "RCG", features );
				newWin.focus();
			}
			// -->
	
