// JavaScript Document
//安全1----------------------------禁止右键
function clic()
{
return false;
}
//document.onmousedown=clic;
document.oncontextmenu=clic;

//安全2----------------------------禁止 复制/拖动 图片
function CtrlKeyDown()
{
if(event.ctrlKey)
{
return false;
}
}
function move()
{
return false;
}
document.onkeydown=CtrlKeyDown;
document.onselectstart=move;
document.ondragstart=move;
window.status="www.chunhsin.com";

function makevisible(cur,which)
{
	if(which==0)
	cur.filters.alpha.opacity=10;
	else
	cur.filters.alpha.opacity=100;
	}