$(document).ready(function() {
	$("a.popjs").click(function() {
		/**alert("Hello world!");
     alert($("#hid_log").attr("value"));
		 alert($("#hid_nolog").attr("value"));
		 alert($("a.popjs").attr("href"));
    */

		if($("#hid_log").attr("value")=="yes"){
			 /**alert($("#hid_log").attr("value"));
			 $("#hiddenvalue").attr("value",$(this).attr("href"));**/

			window.location = $(this).attr("href");
			return false;
		}else{

      window.open("http://www.data100.com.cn/data100/user?pid="+$(this).attr("href"));   
      return false;  
		}
	});

});