//Function is used to open the new url in a child window
function openGuide(url,wsize,hsize,resize)
{
   window.open(url,'childwin','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,width='+wsize+',height='+hsize+',resizable='+resize);
}
// open the url for the specified window size, its used for view e books page.
function winOpenForSealedMedia(Url) {
	window.open(Url, "popUpWin", "resizable=yes,scrollbars,copyhistory=yes,width=" + 1003 + ",height=" + 462 + ",left=" + 0 + ",top=" + 0 + ",screenX=" + 0 + ",screenY=" + 0 + "");
}