// *************************************************************************
//   Commodity.WYonLine.Net Services
//   Copyright (c) 1997 WYonLine.Net Corporation
//   All Rights Reserved
// *************************************************************************

function ShowEditor( url,height,width)
{
    var left=(window.screen.width-width)/2
    var top=(window.screen.height-height)/2

	window.open( url, null, "height="+height+",width="+width+",left="+left+",top="+top+",status=yes,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=yes" );
}
function ShowReader( url,height,width)
{
    var left=(window.screen.width-width)/2
    var top=(window.screen.height-height)/2
	window.open( url, null, "height="+height+",width="+width+",left="+left+",top="+top+",status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes" );
	
}
function ShowOpen( url,height,width)
{
    var left=(window.screen.width-width)/2
    var top=(window.screen.height-height)/2
	window.open( url, null, "height="+height+",width="+width+",left="+left+",top="+top+",status=yes,toolbar=no,menubar=yes,location=no,scrollbars=yes,resizable=yes" );
	
}
function ShowEditorDialog(url,height,width)
{
	var a=window.showModalDialog(url,"" , "dialogHeight="+height+"px;dialogWidth="+width+"px;status=yes;resizable=no" );
	
}

function BringToFront()
{
    window.focus();
}

 




 




