function openWin(url, w, h){ 
	window.name = 'Home';
	var newImg = new Image();
/*	newImg.src = imgSrc;
	var h = newImg.height;
	var w = newImg.width;
	windowWidth = w;
	windowHeight = h;*/
	newwindow=window.open(url,'', 'width='+w+',height='+h+',scrollBars=1,location=0' );
	newwindow.focus();
}// JavaScript Document