// JavaScript Document

function openPainting(img) {
	var width=screen.width-10, height=screen.height-10;
	var left = 0;
	var top = 0;
	var styleStr = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=auto,resizable=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;
	var msgWindow = window.open("","painting", styleStr);
	var head = '<head><title>Jose LLanos</title></head>';
	var body = '<body bgcolor="#000000"><center><img src="' +  img  + '"></body>';
	msgWindow.document.write(head + body);	
}

function openPainting2(img1, img2) {
	var width=screen.width-10, height=screen.height-10;
	var left = 0;
	var top = 0;
	var styleStr = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=auto,resizable=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;
	var msgWindow = window.open("","painting", styleStr);
	var head = '<head><title>Jose LLanos</title></head>';
	var body = '<body bgcolor="#000000"><center><table><tr><td><img src="' +  img1  + '"></td><td><img src="' +  img2  + '"></td></tr></table></body>';
	msgWindow.document.write(head + body);	
}

function openPainting3(img1, img2, img3) {
	var width=screen.width-10, height=screen.height-10;
	var left = 0;
	var top = 0;
	var styleStr = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=auto,resizable=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;
	var msgWindow = window.open("","painting", styleStr);
	var head = '<head><title>Jose LLanos</title></head>';
	var body = '<body bgcolor="#000000"><center><table><tr><td><img src="' +  img1  + '"></td><td><img src="' +  img2  + '"></td><td><img src="' +  img3  + '"></td></tr></table></body>';
	msgWindow.document.write(head + body);	
}
