function showDialog(url, width, height)
{
	return showWindow(url, false, false, false, false, false, false, true, true, width, height, 0, 0);
}

function showWindow(url, isStatus, isResizeable, isScrollbars, isToolbar, isLocation, isFullscreen, isTitlebar, isCentered, width, height, top, left)
{
	if (isCentered)
	{
		top = (screen.height - height) / 2;
		left = (screen.width - width) / 2;
	}

	open(url, '_blank', 'status=' + (isStatus ? 'yes' : 'no') + ','
	+ 'resizable=' + (isResizeable ? 'yes' : 'no') + ','
	+ 'scrollbars=' + (isScrollbars ? 'yes' : 'no') + ','
	+ 'toolbar=' + (isToolbar ? 'yes' : 'no') + ','
	+ 'location=' + (isLocation ? 'yes' : 'no') + ','
	+ 'fullscreen=' + (isFullscreen ? 'yes' : 'no') + ','
	+ 'titlebar=' + (isTitlebar ? 'yes' : 'no') + ','
	+ 'height=' + height + ',' + 'width=' + width + ','
	+ 'top=' + top + ',' + 'left=' + left);
}
function onLinkClickFull(link)
{
if (isIE)
{	
	window.open(link.href, '', 
	'toolbar='+link.toolbar+
	',location='+link.location+
	',status='+link.statusbar+
	',menubar='+link.menubar+
	',scrollbars= yes'+
	',resizable= yes'+
	',width= 770' +
	',height= 1000' +
	',top='+link.top+
	',left='+link.left);
	return false;
}
}
function DisplayWindow(url,w,h)
{
	showDialog(url, w,h);
}
function DisplayFull(url)
{
var win = window.open(url, "WDON", "toolbar=0,location=0,status=no,menubar=no,titlebar=no,scrollbars=yes");	
win.moveTo(0, 0);
win.resizeTo(window.screen.availWidth, window.screen.availHeight);
win.focus();
}
