// JavaScript Document
<!--
function pop_image(file,width,height) { //v2.0
  var url = 'http://localhost/anak_wayang-NEW/media/gallery/big/'+file;
  window.open(url,'image','width='+width+',height='+height+'');
}

function add_icon() {
	var url = 'forms/select_icon.php';
	var naam ='icon_selector';
	var attrib = 'width=300,height=400,scrollbars=auto,toolbar=no,location=no';
	window.open(url,naam,attrib);
}

function del_icon() {
	document.form.iconview.src = '../images/blank.gif';
	document.form.icon.value = '';
}
//-->
