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

function resize(){

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

	window.resizeTo(x,y);
}