",startCloseTag)+1;
if(div_results!="")
{
objResults.innerHTML+=strBloque.substring(index,startOpenTag);
}
try{
eval(strBloque.substring(endOpenTag,startCloseTag));
}catch(e){
alert(e.name + " - "+e.message);
}
index=endCloseTag;
}
if(div_results!="")
{
objResults.innerHTML+=strBloque.substring(index,strBloque.length);
}
}else{
if(div_results!="")
{
objResults.innerHTML+=strBloque;
}
}
}
var ajax_queue_current = 0;
var ajax_queue_running = 0;
var ajax_queue = Array();
var ajax_queues = 0;
var ajax_queue_callback = "";
function LoadContent(parameters,script,form,ret,divsec)
{
ajax_queues = ajax_queues+1;
ajax_queue[ajax_queues] = Array(parameters,script,form,ret,divsec);
if (ajax_queue_callback){ajax_queue[ajax_queues]['callback'] = ajax_queue_callback;ajax_queue_callback = "";}
if (ajax_queue_running == 0){AJAX_NextQueue();}
}
function AJAX_NextQueue()
{
if (ajax_queue_running == 1){
if (ajax_queue[ajax_queue_current]['callback']){eval(ajax_queue[ajax_queue_current]['callback']);}
}
next = ajax_queue_current+1;
if (ajax_queues >= next)
{
ajax_queue_running = 1;
ajax_queue_current = ajax_queue_current + 1;
AJAX_Run(ajax_queue[next][0],ajax_queue[next][1],ajax_queue[next][2],ajax_queue[next][3],ajax_queue[next][4]);
}else{ajax_queue_running = 0;if ($('AjaxStatus')){$('AjaxStatus').innerHTML = "";$('AjaxStatus').style.display ="none";} }
}
function AJAX_Run(parameters,script,form,ret,divsec)
{
if (script.indexOf('.php') > 0 )
{var url = script;}else{var url = "http://kezoormedianetwork.com/management/"+script+".php";}
var params = "aid=ajax&script="+script+parameters;
if (form){params = params + "&" + Form.serialize($(form))}
divid = "Ajax_Table"; if (divsec){divid = divsec;}
if ($('AjaxStatus')){$('AjaxStatus').innerHTML = "Ajax Running "+ajax_queue_current+"/"+ajax_queue.length+". Please be patient... ";$('AjaxStatus').style.display ="";}
new Ajax.Request(url, { method: 'post', parameters: params,
onSuccess: function(transport)
{
if (ret == "noreturn")
{
ajax_queue[ajax_queue_current]['result'] = transport.responseText;
}
else
{
ajax_queue[ajax_queue_current]['result'] = transport.responseText;
ExcecuteSriptsAndReturnText(transport.responseText,divid);
}
AJAX_NextQueue();
}
});
}
function ViewPhoto(gi_id,samewindow)
{
if (samewindow != true)
{
var max_height = iecompattest().clientHeight - 100;
winGP = Dialog.confirm('',{top: 10, width:700,height:max_height, className: "alphacube", okLabel: "Close" })
winGP.getContent().update($('view_photo_div').innerHTML);
winGP.showCenter();
}
$('view_photo_div_html').style.height = iecompattest().clientHeight - 230 + "px";
LoadContent('&vid=view_photo_gallery&gi_id='+gi_id,'includes/components/gallery/gallery.php','','return','view_photo_div_bottom');
LoadContent('&vid=view_photo&gi_id='+gi_id,'includes/components/gallery/gallery.php','','return','view_photo_div_html');
}
function Gallery_SendComment()
{
var fck = FCKeditorAPI.GetInstance("gco_html");
fck.UpdateLinkedField();
ValidateFirst('COForm','1','V_Run','&vala='+$('gi_id').value);
}
function Gallery_SendComment_AJAX()
{
LoadContent('&vid=send_comment&gi_id='+$('gi_id').value,'includes/components/gallery/gallery.php','COForm','return','view_photo_div_html');
return false;
}
function ViewSinglePhoto(photo,autofit,windowWidth,windowHeight)
{
var newImg = new Image();
//Load the window to display a Preview as 'Loading photo...'
winGP = Dialog.confirm('',{top: 10, width:200,height:40, className: "alphacube", okLabel: "Close" })
winGP.getContent().update("
Loading Photo, please wait... ");
winGP.showCenter();
newImg.onload=function(photo,autofit,windowWidth,windowHeight)
{
if (autofit == null){autofit = true;}
var photo_final = this.src;
var photo_resize = false;
var photo_width = 0;
if (this.height > 0)
{
if (autofit == true)
{
var height = this.height;
var width = this.width+30;
if (width > (iecompattest().clientWidth - 50) ) {windowWidth = iecompattest().clientWidth - 50; photo_resize = true;} else { windowWidth = width; }
if (height > (iecompattest().clientHeight - 50) ) {windowHeight = iecompattest().clientHeight - 50; photo_resize = true; } else { windowHeight = height + 20;}
if (photo_resize == true){photo_width = windowWidth-50; photo_final = "thumb2.php?file="+this.src+"&mode=width&size="+photo_width;}
}
if (windowWidth == null){windowWidth = 700;}
if (windowHeight == null){windowHeight = 500;}
//winGP = Dialog.confirm('',{top: 10, width:windowWidth,height:windowHeight, className: "alphacube", okLabel: "Close" })
$('SinglePhotoDIV_Image').src = photo_final;
winGP.setSize(windowWidth, windowHeight);
winGP.getContent().update($('SinglePhotoDIV').innerHTML);
winGP.showCenter();
}
}
newImg.src = photo;
}
function ScrollMove(px,increment)
{
if (increment == true)
{
$('gallery_browse_bottom_scroll').scrollLeft = $('gallery_browse_bottom_scroll').scrollLeft + px ;
}
else
{
$('gallery_browse_bottom_scroll').scrollLeft = px;
}
}
function Gallery_Next_Prev(domove)
{
var images = $('gi_available').value;
var images_arr = images.split(",");
for (x=0;x<=images_arr.length;x++)
{
if (images_arr[x] == $('gi_id').value)
{
if (domove == "next")
{
var next_img = x+1;
if (next_img+1 > images_arr.length){next_img = 0;}
Gallery_ViewPhotoSwitch(images_arr[next_img]);
}
if (domove == "prev")
{
var prev_img = x-1;
if (prev_img-1 < 0){prev_img = images_arr.length-1;}
Gallery_ViewPhotoSwitch(images_arr[prev_img]);
}
return;
}
}
}
function Gallery_ViewPhotoSwitch(gi_id)
{
LoadContent('&vid=view_photo&gi_id='+gi_id,'includes/components/gallery/gallery.php','','return','view_photo_div_html');
}
function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}
function CommentsPage(co_wp_id,page)
{
LoadContent('&co_wp_id='+co_wp_id+'&action=switchpage&page='+page,'includes/components/comments/comments.php','','return','comments_listing_box');
}
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
try {
var pageTracker = _gat._getTracker("UA-544074-35");
pageTracker._trackPageview();
} catch(err) {}
window.onload = function () {
if ($('pngfix')){pngfix.main();}
}
And the winner is March 01 of 2010
Every year when my intrepid reporter husband is getting ready to go out to LA to cover the
Oscars , I’m guaranteed to have at least one person—usually more than one—ask, “Are you going with him?” As if! For those of you who don’t know: The red carpet at the Oscars is tougher to get onto than the lawn of the White House. Security is beyond t(...)
Eagles Moved for Dike Repairs February 28 of 2010
Audubon Helps Protect Eaglets at Herbert Hoover Dike
Thursday, February 25, Belle Glade, Palm Beach County, Fl—Audubon eagle specialists from its Center of Birds of Prey removed two bald eaglets from a nest adjacent to Herbert Hoover Dike on Thursday and relocated them to the raptor center until foster nests can be found.
“Because of (...)
Serendipitous Meetings February 27 of 2010
I met fellow author Jane Green when we were both speaking at the La Jolla Writers conference last fall. We bonded while seated together at the signing table, when Jane offered to nip over to the bar and get us gin & tonics. Nothing like a fellow soldier in the trenches who knows what you need! Luckily, Jane lives in Connecticutt, not far fr(...)
Chickens are HOT! February 27 of 2010
Chickens are HOT!
Chickens are all the rage. Urban, suburban and rural homeowners from every part of the country are ordering chickens in all sorts of fancy breeds. Competition over the cutest coops is escalating rapidly and people are signing up for classes on how to raise healthy and happy flocks in smaller spaces!
Why the sudden craze? Ho(...)
Winter Solstice by Marcie Telander February 26 of 2010
Winter Solstice
~ by Marcie Telander
Cold here too.
So cold that the Stellar’s bluejays were pecking at the window,
feathered eyebrows arched in disapproval.
Finally got food out to them. The feeding flurry was impressive —
bobbing and weaving like boxers,
they fanned their fine blue tails at each other,
vying for shiny sunflower(...)
Because of Your Blog! Who Knew? February 26 of 2010
Because of Your Blog! Who Knew?
When I interviewed the Hollister School Book Club we had no idea that it might lead down some interesting avenues! After the blog was posted the group was soon contacted by Clayton Childress.
“My name is Clayton Childress and I'm a PhD student in sociology at UCSB. I found the Hollister School Book Club throug(...)
Bookmarks Magazine February 24 of 2010
So Many Books So Little Time – Bookmarks Magazine
I’m not an avid reader of magazines. I hate the ads on every page. I despise the inserts that inevitably demand that I open the magazine to a page in which I have little interest. I make an effort to subscribe to e-versions of the few journals that I enjoy. I still receive one or two in har(...)
keZoor Network
We keep our customers connected, try our kezoor product now and get started.
Read more about keZoor
Featured Blogs
Deborah Kunzie's personal site featuring her photography and life as a web developer.
A blog magazine dedicated entirely to birds.
Wildlife Photographer Deborah Kunzie showcases her best work. Nature - away from chaos, everyday pressures, stress and deadlines.
Laurie Wagner Buyer, a writer and author. She also devotes time to her mentoring and editing business.
A small independent press with an emphasis on quality manuscripts by respected authors as well as new talent.
A site for Sunday Morning reflection. Guest writers are welcome.
Susan R. Stoltz, editor of WOW magazine. This is her personal blog about all the areas of her life.
A fine group of people that walk and contribute to the Susan G. Komen Breast Cancer Foundation. This is their team site.
We need good Americans with quality solutions to tough problems. The ‘Virtual Presidency’ is your chance to be heard.
The amusing site of four gals who gather at a tiki bar and talk about the ridiculous things people say and do. Life according to Skeech, Rotita, Scarlett and Talula.
W.C. Jameson is author of 60+ books. He is well known for his ventures in treasure hunting.
A print magazine featuring stories on women who live, work, play and create in the west.