// JavaScript Document<script language="JavaScript">
var newwindow;
function NewWindow(mypage)
{
	LeftPosition=(screen.width)?(screen.width-600)/2:100;
	TopPosition=(screen.height)?(screen.height-440)/2:100;
	settings='width=400,height=130,top='+TopPosition+',left='+LeftPosition+',scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
	newwindow=window.open(mypage,'caselacheie',settings);
}
function NewWindowPrint(mypage)
{
	LeftPosition=(screen.width)?(screen.width-600)/2:100;
	TopPosition=(screen.height)?(screen.height-440)/2:100;
	settings='width=688,height=600,top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
	newwindow=window.open(mypage,'caselacheie',settings);
}
function NewWindowPrintCereri(mypage)
{
	LeftPosition=(screen.width)?(screen.width-600)/2:100;
	TopPosition=(screen.height)?(screen.height-440)/2:100;
	settings='width=688,height=400,top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
	newwindow=window.open(mypage,'caselacheie',settings);
}

function PrintWindow(mypage)
{
	LeftPosition=(screen.width)?(screen.width-600)/2:100;
	TopPosition=(screen.height)?(screen.height-440)/2:100;
	settings='width=540,height=500,top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
	newwindow=window.open(mypage,'caselacheie',settings);
}

