
function openWindow( cItem ) {

	var newWindow;
	var url = cItem;
	
	newWindow = window.open( url,'','menubar=yes,toolbar=yes,location=yes,status=yes,scrollbars=yes,resizable=yes,width=800,height=600');
}

function openSizedWindow( cItem, width, height ) {

	var newWindow;
	var url       = cItem;
	var settings  = 'menubar=yes,toolbar=yes,location=yes,status=yes,scrollbars=yes,resizable=yes,width=' + width + ',height=' + height;
	
	newWindow = window.open( url,'',settings );
}

function closeWindow()
{
    window.close();
}

function printWindow()
{
    window.print();
}

function setFocus( control )
{
    document.getElementById(control).focus();
}

function goBack()
{
    history.back();
}

function gotoURL( url )
{
    window.location = url;
}