﻿
function ResizeImageW(img,w)
{
		var image=new Image();
        image.src=img.src;

		var iw = image.width;
		var ih = image.height;
		var iratio = iw/w;
        
        if(iw > w)
		{
            iw = w;
			ih = ih/iratio;
        }

		img.width=iw;
		img.height=ih;
}

function ResizeImage_Special(img,w,h)
{
		var image=new Image();
        image.src=img.src;

		var iw=image.width;
		var ih=image.height;
		var iratio=iw/ih;
        
        if(iw>w)
		{
                iw=w;
				ih=w/iratio;
        }
        if(ih>h)
		{
                ih=h;
                iw=h*iratio;
        }  
		img.width=iw;
		img.height=ih;
}


function ResizeImage(img)
{		
    ResizeImage_Special(img, 90, 90);
}

function getVersionInfo()
{
    var date = new Date();
    document.getElementById("year").innerHTML = 'Copyright@2003-'+date.getYear()+'&nbsp;珠海市金信桥网络技术有限公司 版权所有 &nbsp;&nbsp;联系电话：0756-2183085';
}