
function openWindow(href,width,height)
{
	var xtop = parseInt((window.screen.width - width)/2);
	var ytop = parseInt((window.screen.height - height)/2);
	var mWindow = window.open( href, "iView" , "toolbar=no, location=no, status=no, menubar=yes, scrollbars=yes, resizable=0, width="+width+", height="+height+", top=" + xtop + ", left=" + ytop );
	mWindow.focus();
	return false;
}

function openWindow_resize(href,width,height)
{
	var xtop = parseInt((window.screen.width - width)/2);
	var ytop = parseInt((window.screen.height - height)/2);
	var mrWindow = window.open( href, "iView" , "toolbar=no, location=no, status=no, menubar=no, scrollbars=yes, resizable=no, width="+width+", height="+height+", top=" + xtop + ", left=" + ytop );
	mrWindow.focus();
	return false;
}

function openMessage(href,width,height)
{
	var xtop = parseInt((window.screen.width - width)/2);
	var ytop = parseInt((window.screen.height - height)/2);
	var mWindow = window.open( href, "iView" , "toolbar=no, location=no, status=no, menubar=no, scrollbars=yes, resizable=0, width="+width+", height="+height+", top=" + xtop + ", left=" + ytop );
	mWindow.focus();
	return false;
}

