function openW (path) {
	var win = window.open (path, 'win', 'width=450,height=300,menubar=0,location=0,resizable=0,scrollbars=0,status=0');
	if (!win) alert ('Please, allow popups for this site.');
	else win.focus();
	
}

function resize(){

	var x = document.getElementById('img').width + 420;
	var y = document.getElementById('img').height + 20 + 65+270;
	
	document.body.style.padding = 0;
	document.body.style.margin = 10;
	document.body.style.backgroundColor = '#e6e6e6';

	window.resizeTo(x,y);
}
function resize2(){

	var x = document.getElementById('img').width + 33;
	var y = document.getElementById('img').height + 20 + 65;
	
	document.body.style.padding = 0;
	document.body.style.margin = 10;
	document.body.style.backgroundColor = '#e6e6e6';

	window.resizeTo(x,y);
}