function getProp(obj,prop) {
	if(window.getComputedStyle) {
		compStyle = window.getComputedStyle(obj,null);
		return parseInt(compStyle[prop],10);
	} else if (obj.currentStyle) {
		return parseInt(obj.currentStyle[prop],10);
	} else {
		return parseInt(obj.style[prop],10);
	}
}
function bodyOnLoad() {
	windowResize();
}
function windowResize() {
	/*oCMenu.menuPlacement="left";
	if (bw.ie) {
		oCMenu.fromTop=135;
	} else {
		oCMenu.fromTop=132;
	}
	oCMenu.fromLeft=63;
	oCMenu.construct(1);*/
}
function openPhotos(cid,i) {
	window.open("photo.aspx?id="+cid+"&i="+i,"photo_win","height=700,width=840,resizable=0,scrollbars=0");
}