function flyerDelete(compID,gallID,rID){
	var cid = compID;
	var gid = gallID;
	var rid = rID;
	var is_sure=window.confirm("Are you sure?");
	
	if (is_sure) {
		window.location='./flyerEdit.asp?cid=' + cid + '&flyid=' + gid + '&funct=2&sregion=' + rid + '';
	}
}