                var cmurl_val_obj = document.getElementById("cmurl_val");
                if (cmurl_val_obj){
                	var cmurl_val = cmurl_val_obj.value;
                }else{
                	var cmurl_val = document.location.href;
                }
				var comment_template_obj = document.getElementById("comment_template");
				if (comment_template_obj){
					var template = comment_template_obj.value;
				}else{
					var template = '';
				}
				
				$(document).ready(function() {  
					$.getJSON("http://comment.goodbaby.com/default/index/index?callback=?",
							{cmurl:cmurl_val,desire_page:0,template:template},
							function(json){
								document.getElementById("common_comments_section").innerHTML = json.data;
							});
				}); 
                
                
