//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();
			}
// -->

//in-page popup

function showpopin(left, top, width, height, offset, always){
	if (document.cookie.indexOf("POPPED=1") < 0 || always) {
		document.getElementById('popin').style.top=top+'px';
		document.getElementById('popin').style.left=left+'px';
		left=left+offset;
		top=top+offset;
		document.getElementById('popin').style.display='block';
		document.cookie = "POPPED=1;";
		}
	}

function popclose(){
	document.getElementById('popin').style.display='none';
}

	function do_html(index, width, height){
html_obj='<iframe src=pop_model.php marginheight=0 marginwidth=0 height='+height+' width='+width+' scrolling="no"></iframe>';
  	document.getElementById('popup').innerHTML=html_obj;
}
	
