function OpenPopup( a_PopupUrl )
{
	var wnd = window.open(a_PopupUrl, 'kadetus_popup', 'height=400, width=500, top=200, left=200, location=no, menubar=no, resizable=yes, scrollbars=yes, toolbar=no');
	wnd.focus();
}

function OpenPhoto( a_ImageUrl, a_ImageWidth, a_ImageHeight )
{
	var wnd = window.open(a_ImageUrl, 'kadetus_photo', 'height=' + a_ImageHeight +', width= ' + a_ImageWidth + ', top=200, left=200, location=no, menubar=no, resizable=no, scrollbars=no, toolbar=no');
	wnd.focus();
}
