function setPopup(ID, pWidth, pHeight) {
	var thisH = document.body.clientHeight;
	var thisW = 0;
	
	if (thisH<900) {
		thisH=600;
		thisW=800;
	}
	if (thisH<1150 && thisH>899) {
		thisH=850;
		thisW=1200;
	}
	
	if (thisH>1149) {
		thisH=1100;
		thisW=1600;
	}
	
	if (thisH<pHeight) {
		pHeight=thisH;
		pWidth=thisW;
	}
	
	var win = "width="+pWidth+",height="+pHeight+",menubar=no,location=no,resizable=no,scrollbars=no";
	newWin = window.open("/view/" + ID + "/"+pWidth+"/",name,win);
	newWin.focus();
	//alert("id=" + ID + " width=" + pWidth + " height=" + pHeight);
}

function myToggle(el)
{
    if (typeof el != 'object') el = document.getElementById(el);
    if (el) el.style.display = (el.style.display == 'block') ? 'none' : 'block';
    return false;
}
