﻿// 表单下拉

function input(id) {
	return document.getElementById(id);
}
function addseccode() {	
	if(noseccode != 0) return;	
	input('search_option').style.display = 'block';
	input('search').className = 'current';
}
function hidesec() {
	input('search_option').style.display = 'none';
	input('search').className = '';
}


// 图片长宽控制

function setImgSize(imgID,maxWidth,maxHeight)
{
	var img = document.images[imgID];
	if(maxWidth < 1)
	{
	    if(img.height > maxHeight)
	    {
	        img.height = maxHeight;
	    }
	    return true;
	}
	if(maxHeight < 1)
	{
	    if(img.width > maxWidth)
	    {
	        img.width = maxWidth;
	    }
	    return true;
	}
	if(img.height > maxHeight || img.width > maxWidth)
	{
	    if((img.height / maxHeight) > (img.width / maxWidth))
	    {
	        img.height = maxHeight;
	    }
	    else
	    {
	        img.width = maxWidth;
	    }
	    return true;
	}
}


// 清除JS错误

<!-- 
	function ResumeError() {
		return true;
	}
	window.onerror = ResumeError;
// -->