// JavaScript Document
function del(ent, id)
	{
		var mess = "Deleting "+ent+" ...... !";
		
		if(confirm(mess))	
			{
				var url="del.asp?ent="+ent.toLowerCase()+"&id="+id;
				location.href = url;
			}
	}
function navS(pgid)
	{	
		document.getElementById(pgid).style.background = "url(assets/images/active_nav_bg.png)";
		document.getElementById(pgid).style.backgroundPosition = "left bottom";
		document.getElementById(pgid).style.backgroundRepeat = "repeat-x";
		document.getElementById(pgid).style.color = "#FFF";
	}
function the_pic(bica)
	{
		window.opener.document.getElementById("the_pic").value = bica;
		window.opener.document.getElementById("pic_disp").src = "../assets/images/pg_imgs/"+bica;
		this.close();
	}
function img_loader()
	{
		window.open("/rivotek/cms/loader.asp", "Select Theme Picture", "width=500,height=400");
	}
function open_large(the_pic)
	{
		if((the_pic != null) & (the_pic != "no_pic.jpg"))
			{
				window.open(the_pic, "Select Theme Picture", "width=400,height=300");
			}
	}
