",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();}
}
Our New Gardening Advisor - Jeff Oberhaus from Vintage Hill Farm February 08 of 2010
Jeff Oberhaus is the owner of Vintage Hill Farm located in Franklin, Missouri. Vintage Hill, which opened in 1992, is small by nursery standards, but located in the middle of one-hundred acres it seems as large as the 1700 variety plant list.
Vintage Hill caters to collectors and doesn’t grow enormous amounts of one item. Most of what he sell(...)
Picnic in the Park February 08 of 2010
I am thinking of a tableau I came across once. Paul and I were strolling through Golden Gate Park in San Francisco. It was spring. It had just rained. We had encountered a few redwood trees originally planted in a cluster. I imagined trying to wrap my arms around each one. That it would be an impossible hug.
Further on, the lush gree(...)
CHERRY-ANISE BISCOTTI February 08 of 2010
CHERRY-ANISE BISCOTTI
1 cup blanched whole or slivered almonds
1 cup sugar
½ cup unsalted butter
2 tsps. anise seeds
2 large eggs
1 ½ cups unbleached flour
½ cup yellow cornmeal
1 ½ tsp baking powder
½ tsp salt
¾ cup dried cherries
Preheat oven to 350 degrees Fahrenheit. Line baking sheet with parchment(...)
Another Chilly Winter Weekend in New York February 08 of 2010
Another chilly winter weekend in New York. I put on my long johns, bundled up, and headed out nonetheless, with my hubby. A girl’s got to do what a girl’s got to do when the cupboards are bare. Luckily, Whole Foods is only a 10-minute walk away, so I didn’t have far to go. I stocked up on everything, avoiding the frozen food aisle – I’d ha(...)
About this Site February 07 of 2010
Things used to be so simple.
How and why did we complicate them?
I have done my share I guess.
But what about now?
I know if I would just follow the divine calling everything would be fine.
This site is where I write about the simpler things in life. Things in my life that I would like to make simple. Things I wil(...)
Valentine’s Day Approaches February 05 of 2010
As Valentine’s Day approaches, I’m thinking thoughts of romance. I’m happy to report the home fires are still burning as far as my darling husband is concerned. (How can you not love a guy who vacuums & dusts when you’re not there to do it?) Okay, so it took a few tries (who’s counting?) before I found the One, but Sandy and I have been mar(...)
Innocence Lost February 05 of 2010
Two minutes ago, I closed the last page of When I Came West by Laurie Wagner Buyer and sighed. My thoughts went to a wood sculpture of a young nude woman in my living room titled “Innocence.” When I bought the 2 1/2 foot high hewn piece of wood in 2004, it already had a crack from the side of the head, down the neck, across the heart to the (...)
Pages:
Prev
1
2
3
4
...
82
Next
- 572 entries
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.