﻿
function key() {
	//if (event.shiftKey) {
	//	return false;
	//}
//禁止Shift
	if (event.altKey) {
		return false;
	}
//禁止Alt
	if (event.ctrlKey) {
		return false;
	}
//禁止Ctrl
	
}
document.onkeydown = key;
if (window.Event) {
	document.captureEvents(Event.MOUSEUP);
}
function nocontextmenu() {
	event.cancelBubble = true;
	event.returnValue = false;
	return false;
}
function norightclick(e) {
	if (window.Event) {
		if (e.which == 2 || e.which == 3) {
			return false;
		}
	} else {
		if (event.button == 2 || event.button == 3) {
			event.cancelBubble = true;
			event.returnValue = false;
			return false;
		}
	}
}
//禁右键
document.oncontextmenu = nocontextmenu;  // for IE5+
document.onmousedown = norightclick;  // for all others




/**
		type   图片img   Flash  swf
		divId  DIV的ID
		imgSrc 图片或Flash的地址
		width  图片或Flash的宽
		height 图片或Flash的高
		asrc   链接的地址，如果无链接，给''
		target 链接地址的target属性值
	**/
	function putSwfOrImg(type,divId,imgSrc,width,height,src,target){
		if(divId == '' || divId == 'undefind' || divId == 'null'){
			return ;
		}
		if(imgSrc!=''&&imgSrc!=null&&imgSrc!='undefind'){
			if(imgSrc.indexOf(".swf")!=-1){
				//alert(imgSrc.indexOf(".swf"));
				//alert(imgSrc.length);
				type = "swf";
			}
		}else{
			return ;
		}
		var imgBody="";
		var swfBody="";
		if(src!=''&&src!='undefind'&&src!='null'){
			swfBody="<a href='"+src+"' target='"+target+"'><object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0' width='"+width+"' height='"+height+"'><param name='movie' value='"+imgSrc+"' /><param name='quality' value='high' /><param name='wmode' value='opaque' /><embed src='"+imgSrc+"' quality='high' pluginspage='http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash' width='"+width+"' height='"+height+"'></embed></object></a>";
			imgBody="<a href='"+src+"' target='"+target+"'><img src='"+imgSrc+"' width='"+width+"' height='"+height+"'/></a>";
		}else{
			swfBody="<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0' width='"+width+"' height='"+height+"'><param name='movie' value='"+imgSrc+"' /><param name='quality' value='high' /><param name='wmode' value='opaque' /><embed src='"+imgSrc+"' quality='high' pluginspage='http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash' width='"+width+"' height='"+height+"'></embed></object>";
			imgBody="<img src='"+imgSrc+"' width='"+width+"' height='"+height+"'/>";
		}
		var divObject = document.getElementById(divId);
		if(divObject!=null&&divObject!='undefind'&&divObject.tagName=="DIV"){
			if(type == "swf"){
				divObject.innerHTML=swfBody;
			}else{
				divObject.innerHTML=imgBody;
			}
		}
	}