// JavaScript Document
document.writeln("    <style type=\"text\/css\">  ");
document.writeln("#qqonline{");
document.writeln("	position:absolute;");
document.writeln("	top:120px;");
document.writeln("	left:16px;");
document.writeln("	width:100px;");
document.writeln("	height:300px;");
document.writeln("}   ");
document.writeln("#qqonline1{");
document.writeln("	position:absolute;");
document.writeln("	top:120px;");
document.writeln("	right:16px;");
document.writeln("	width:100px;");
document.writeln("	height:300px;");
document.writeln("}   ");
document.writeln("#closebtn,#closebtn1{");
document.writeln("	background-color:#CCC;");
document.writeln("	text-align:center;");
document.writeln("	font-size:12px;");
document.writeln("	width:100px;");
document.writeln("	height:16px;");
document.writeln("	padding-top:4px;");
document.writeln("	cursor:pointer;");
document.writeln("}   ");
document.writeln("    <\/style> ");

 $(this).scroll(function() {    // 页面发生scroll事件时触发  
	 var bodyTop = 0;  
     if (typeof window.pageYOffset != 'undefined') {   
		 bodyTop = window.pageYOffset; 
	 }
	 else if (typeof document.compatMode != 'undefined' && document.compatMode != 'BackCompat')
	 {   
		 bodyTop = document.documentElement.scrollTop;
	 }   
	 else if (typeof document.body != 'undefined') {   
		  bodyTop = document.body.scrollTop; 
	 } 
	 
	 $("#qqonline").css("top", 120 + bodyTop);   // 设置层的CSS样式中的top属性, 注意要是小写，要符合"标准"   
	 $("#qqonline1").css("top", 120 + bodyTop);   // 设置层的CSS样式中的top属性, 注意要是小写，要符合"标准" 	  
  });
  
 $(this).ready(function(){
    $("#closebtn").click(function(){
	  hideLayer("#qqonline"); 
    });
    $("#closebtn1").click(function(){
	  hideLayer("#qqonline1");   
    });
    function hideLayer(aa){
      $(aa).hide();
    }	
 });

     //document.writeln("<div id=\"qqonline\"><a href=\"http:\/\/article.lawtv.com.cn\/fsgongsu\" target=\"_blank\"><img src=\"http:\/\/www.lawtv.com.cn\/ad\/bianlun.gif\" width=\"100\" height=\"300\" \/></a><div id=\"closebtn\">关闭<\/div><\/div>");
     document.writeln("<div id=\"qqonline\"><img src=\"http:\/\/www.lawtv.com.cn\/ad\/vanward.gif\" width=\"100\" height=\"300\" \/><div id=\"closebtn\">关闭<\/div><\/div>");
	 document.writeln("<div id=\"qqonline1\"><img src=\"http:\/\/www.lawtv.com.cn\/ad\/ad-01.gif\" width=\"100\" height=\"300\" \/><div id=\"closebtn1\">关闭<\/div><\/div>");
