GIF89a php
Current File : /home/hencockfreshchic/public_html/admin.cpanel/js/delLayout.js
function delLayout(lay)
{
	var counter=$("#counter").val();
	var newCounter=parseInt(counter)-1;

	$("#counter").val(newCounter);

	if(lay=="lay1")
	{
		alert("Can not remove this layout");
	}
	else
	{
		$("#"+lay).hide();
	}
	
}