
	// Simply opens a window for selecting images.
	function openWin(url, width, height){
		var newWin = window.open(url, '', 'width=' + width + ',height=' + height);
	}
	
	function closeWin(){
		window.close();
	}

