$("#weblink").change(function () {

	if($(this).attr('value') != '' && $(this).attr('value') != undefined) {
		window.open($(this).attr('value'));
	}
});

$("#View").click(function () {
	var m=$("#fMonth").attr('value');
	m = (m.length==1)?'0'+m:m;
	
	var d=$("#fDay").attr('value');
	d = (d.length==1)?'0'+d:d;

 	location.href = linkViewContentBydate + '/' + $("#fYear").attr('value')+'-'+m+'-'+d;
});


