// JavaScript Document
function changepic(bigpic,picwidth,picheight,paraentob)
{
	if(paraentob==null || paraentob==undefined)
	{var setbg=document.getElementById("imgpro");}
	else
	{var setbg=document.getElementById(paraentob);}
	setbg.setAttribute("src",bigpic)
	if(picwidth!="" || picwidth!=null)
	{
		setbg.setAttribute("width",picwidth)
		}
	if(picheight!="" || picheight!=null)
	{
		setbg.setAttribute("height",picheight)
		}
	}