function opencallmewindow(adres){
	window.open(adres,"statement","toolbar=no,scrollbars=no,location=no,resizable=no,width=300,height=150");
}

function openimagewindow(adres){
		newWindow=window.open(adres,'','toolbar=no,scrollbars=no,location=no,resizable=no,status=0,titlebar=0,width=416,height=312');
		newWindow.document.write('<html><head><\/head><body topmargin="0" leftmargin="0"><img src="'+adres+'" width="416" hieght="312"><\/body><\/html>');
		newWindow.focus();
}

function openprintwindow(adres){
	window.open(adres,"exlease","toolbar=no,scrollbars=yes,location=no,resizable=no,width=600,height=480");
}