// JavaScript Document

function newPopup(url) {
	popupWindow = window.open(
		url,'popUpWindow','height=300,width=300,left=150,top=15,resizable=no,scrollbars=yes,toolbar=no,menubar=no,location=no,directories=no,status=yes');
}

function resizeWindow(){
				var docheight = document.getElementById('loadedpic').height + 50;
				var docwidth = document.getElementById('loadedpic').width + 5;
				window.resizeTo(docwidth, docheight);
}
