var newWin = null;

function createWin (soubor, width, height) {

	if (san) {

		newWin = window.open (soubor, 'new_win', 'width=' + width + ',height=' + height + ',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,top=20,left=20');
		newWin.creator = self;
//		alert(newWin.creator.location);
		newWin.focus ();

	}
}
