function exeUrl(url) {
	if(url!='') {
		window.location.href=url;
	}
}
function showQQ7(qq){
	document.write(" <a href=tencent://message/?uin="+qq+"&Site=www.qudee.com&Menu=yes><img border='0'width='70px' height='21px' SRC=http://wpa.qq.com/pa?p=1:"+qq+":7 title='QQ联系我'></a>");
}


function DrawImageBySize(ImgD,frameWidthStr,frameHeightStr){ 
	var frameWidth = parseInt(frameWidthStr);   
	var frameHeight = parseInt(frameHeightStr);
	
	var image = new Image();    	
	image.src = ImgD.src;     
	if(image.width > 0 && image.height > 0){ 
		if(image.width / image.height >= frameWidth / frameHeight){ 
		   if(image.width >= frameWidth){
		    ImgD.width = frameWidth; 
		    ImgD.height = (image.height * frameWidth) / image.width; 
		   }
		   else{ 
		    ImgD.width = image.width;
		    ImgD.height = image.height; 
		   }
		} 
		else{ 
		   if(image.height > frameHeight){
		    ImgD.height = frameHeight; 
		    ImgD.width = (image.width * frameHeight) / image.height; 
		   }
		   else{ 
		    ImgD.width = image.width;
		    ImgD.height = image.height; 
		   }
		} 
	}
} 
