// JavaScript Document
function SetCwinHeight(){
var bobo=document.getElementById("bobo");
if (document.getElementById){
if (bobo && !window.opera){
if (bobo.contentDocument && bobo.contentDocument.body.offsetHeight){
bobo.height = bobo.contentDocument.body.offsetHeight;
}else if(bobo.Document && bobo.Document.body.scrollHeight){
bobo.height = bobo.Document.body.scrollHeight;
}
}
}
}

function dcrt1(){
document.writeln("<iframe width=\"978\" id=\"bobo\" name=\"bobo\" onload=\"Javascript:SetCwinHeight()\" height=\"1\" src=\"sf2d\/1.htm\" scrolling=\"no\" frameborder=\"0\"><\/iframe>");
}
function dcrt2(){
document.writeln("<iframe width=\"978\" id=\"bobo\" name=\"bobo\" onload=\"Javascript:SetCwinHeight()\" height=\"1\" src=\"\/sf2d\/2.htm\" scrolling=\"no\" frameborder=\"0\"><\/iframe>");
}

function dcrtcopy(){
document.writeln("<input type=\"button\" name=\"Submit\" onclick=\"copyToClipBoard()\" value=\"复制网址, 给QQ\/MSN上的好友\" style=\"background:#EEE;color:#36F;border:solid 1px #999;width:200px;cursor:pointer;\" \/>");
}

function copyToClipBoard(){ 
var clipBoardContent=""; 
clipBoardContent+=document.title; 
clipBoardContent+=""; 
clipBoardContent+=this.location.href; 
window.clipboardData.setData("Text",clipBoardContent); 
alert("复制成功，可以分享给QQ/MSN上的好友啦！"); 
}