//MouseOver------------------

function cngimg(n){
	var imgsrc = document.images[n].src;
	if(imgsrc.indexOf("_on") < 0){
		document.images[n].src=imgsrc.substring(0,imgsrc.length-4) +"_on.gif";
	}
	else{
		document.images[n].src=imgsrc.substring(0,imgsrc.length-7) +".gif";
	}
}

function cngimgj(n){
	var imgsrc = document.images[n].src;
	if(imgsrc.indexOf("_on") < 0){
		document.images[n].src=imgsrc.substring(0,imgsrc.length-4) +"_on.jpg";
	}
	else{
		document.images[n].src=imgsrc.substring(0,imgsrc.length-7) +".jpg";
	}
}

function wopenpopup(target){
	window.open(target, 'winName', 'width=500,height=600,status=0,scrollbars=1,menubar=0,location=0,toolbar=0,resizable=0');

}