function popupimg(url){
	features = 'width=630,height=560,scrollbars=yes,resizable=yes';
	popupwin = window.open(url,'imgWindow',features);

	popupwin.focus();

	return false;

	}
	
function popupmov(url){
	features = 'width=250,height=375,top=50,left=50,scrollbars=no,resizable=yes';
	popupwin = window.open(url,'imgWindow',features);

	popupwin.focus();

	return false;

	}
	
function popup(url){
	features = 'width=620,height=300,scrollbars=yes,resizable=yes';
	popupwin = window.open(url,'imgWindow',features);

	popupwin.focus();

	return false;

	}
