$("[rel^='openWin']").live("click",function(){
	var relText=$(this).attr('rel');
	var wh=relText.replace(/openWin/ig, '');
	var whArray=wh.split("_");
	newWindow=window.open(this.href, "window"+whArray[1],"width="+whArray[0]+",height="+whArray[1]+",resizable=yes,scrollbars=yes");
	newWindow.focus();
	return false;
});

