
function getObj(objName){
	return(document.getElementById(objName));
	}
function changeImg(id,tar){
	getObj(id).src="images/"+tar;
}

function OpenWin(url,width,height)
{
	window.open(url,"","width="+width+",height="+height+",top=0,left=0");

}
