var openWin = function(obj,w,h){
	if(navigator.userAgent.indexOf("MSIE") != -1){
		return true;
	}else{
		window.open(obj.href,'','scrollbars=yes,location=yes,resizable=yes,width=' + w + ',height=' + h);
		return false;
	}
}

