//ComWeb JavaScript file - 5Aug05


//This function is used by subscribe footer link
function SmallerWindow(url) {
	var iHeight=(window.screen.height - 50)/2;
	var iWidth=(window.screen.width)/2 + 50;
	iHeight=500;
	iWidth=700;
	var iTop = 50;//200
	var iLeft = 90;//200
	var winDetails = 'toolbar=no,menubar=no,scrollbars=yes,titlebar=no,left=' + iLeft + ',top=' + iTop + ',width=' + iWidth + ',height=' + iHeight;
	//alert(winDetails)
	var win3=window.open(url,'',winDetails); 
	win3.focus();
};
