function popImage(imagesrc) {
	window.open(imagesrc+',image.html', 'image', 'toolbar=no,status=yes,width=100,height=100, scrollbars=yes');
}

function scaleImage(image) {
	msie = (document.all) ? true : false;	
	element = (msie ? document.all[image] : document.getElementById(image));
	noheight = false;
	
	screenwidth = screen.width-30;
	screenheight = screen.height-55;
	if (element.width < screen.width-30) {
		screenwidth = element.width+30;
		noheight = true;
		if (element.height < screen.height-55) {
			screenheight = element.height+75;
		}
	}
	
	if (element.height < screen.height-55 && noheight==false) {
		screenheight = element.height+75;
		if (element.width < screen.width-30) {
			screenwidth = element.width+30;
		}
	}
	window.resizeTo(screenwidth, screenheight);
}

function checkForm(obiekt) {
	var errormsg = '';
	if (obiekt.phone.value=='' && obiekt.email.value=='')	{
		errormsg = errormsg + "Podaj telefon kontaktowy lub adres e-mail.\n";
	}
	if (errormsg)	{
		alert(errormsg);
		return false;
	} else {
		return true;
	}
	
}

function zapytanie(account) {
	address = account + '@' + 'krakoin.com' + '.pl';
	window.open('mailto:'+[address],'_top');

}
