///////////////////////////////////////////////////////////////////////
//                                                                   //
//     JavaScripts Global Function used on every Page			     //
//                                                                   //
///////////////////////////////////////////////////////////////////////


function PopUp(sURl, sName, sFeatures) {
		// To open a new window

		var newBrowser;

		newBrowser = window.open(sURl, sName, sFeatures);
		newBrowser.focus();		
	}

function SetWindowSize(pWidth, pHeight) {
	//resize the window	
	window.resizeTo(pWidth,pHeight) 		
	
	// Center the window 
	var xMax = screen.width, yMax = screen.height;
	var xOffset = (xMax - pWidth)/2, yOffset = (yMax - pHeight)/2;
	window.moveTo(xOffset,yOffset)		
}
	
function showPage(sPage) {
	// Call the popup window
	var sURl = "/india/msdn/" + sPage;
	PopUp(sURl,"Suggest","WIDTH=580,HEIGHT=420,left=50,top=0,ScrollBars=no,Resizable=no")

}