/*****************************************************************
 *                                                               *
 *  [SalasBBS]                                                   * 
 *  $Revision: 1.84.2.1 $                                        *
 *                                                               *
 ****************************************************************/
var blanklink = GetCookie("passport_blanklink");
var openWindowChecked = '';
if(blanklink=='1'){
	openWindowChecked = 'Checked';
	document.write('<style type="text/css">.openTitle a:active {test:expression(target="_blank");}</style>');
}

//仅IE有效
if(is_ie){
	openWindowStr = '<input onClick="setOpenLink();" type="checkbox" name="newWindow" value="1" '+openWindowChecked+'>总是新窗打开';
}else{
	openWindowStr = "";
}

function setOpenLink(){
	//var op = document.getElementById("newWindow");
	if(blanklink!='1'){
		SetLongCookie('passport_blanklink','1');
	}else{
		SetLongCookie('passport_blanklink','0');
	}
    window.location.reload();
}


