function openWindow1(url) {
    if (document.all)
        var xMax = screen.width, yMax = screen.height;
    else
        if (document.layers)
            var xMax = window.outerWidth, yMax = window.outerHeight;
        else
            var xMax = 640, yMax=480;

    var xOffset = (xMax - 200)/2, yOffset = (yMax - 200)/2;

   mywin = window.open(url,'medi','width=800,height=800,screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+',scrollbars=yes,location=yes,resizable=yes');
   mywin.focus();
}

function openClientWindow(url)
{
	mywin = window.open(url,'medi','scrollbars=yes,location=yes,resizable=yes');
	window.blur();
   mywin.focus();
   window.name = "mainwin";
   
  
}

function confirmDelete(url)
{
	if(confirm("Are you sure! Do you want to remove this item"))
	{
		window.location.href = url;
		window.focus();
	}	
}


function openRootWindow(url)
{
	if(opener)
	{
	opener.location.href = url;
	window.blur();
   	opener.focus();
	}
	else
	{
	window.location.href = url;
	window.focus();
	}
	
}

function logOutWindow(url)
{
	if(opener)
	{
	opener.location.href = url;
	window.blur();
   	opener.focus();
	}
	else
	{
	window.location.href = url;
	window.focus();
	}
}


function openImage(url) {
    if (document.all)
        var xMax = screen.width, yMax = screen.height;
    else
        if (document.layers)
            var xMax = window.outerWidth, yMax = window.outerHeight;
        else
            var xMax = 640, yMax=480;

    var xOffset = (xMax - 200)/2, yOffset = (yMax - 200)/2;

   mywin = window.open(url,'img','width=800,height=800,screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+',scrollbars=yes,location=yes,resizable=yes');
   mywin.focus();
}




