",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();}
}
Books, books, books February 24 of 2010
I used to live in a house filled with books. Everywhere you looked were bookshelves, all crammed with everything my husband and I had ever read (along with about ten years worth of Sandy’s car magazines). And then there were the foreign editions of my books. One whole wall was devoted just to titles of mine translated into twenty-five langu(...)
December Sauna by Marcie Telander February 24 of 2010
December Sauna
~ by Marcie Telander
You -
arising from the snowbound stream
like a willow, encased
in taut winter skin.
This other skin frozen into an arctic gown
or a shroud
floating
over pink naked flesh.
Opening your mouth
through wreathes of breath,
screaming: “HOOOOOOOOOYAH!”
Ice-slicked, crystallized curls thrown bac(...)
The Hunt - A Murder Well Deserved February 23 of 2010
The Hunt – A Murder Well Deserved
As we all know, the ‘good guy’ doesn’t always win, and often it’s the bullies of the world that get their way. So it goes for each of us to decide if being right is the road to happiness.
Someone else has claimed the right to use my cover design for THE HUNT – A Murder Well Deserved. So I had a decision to (...)
My Love Hate Affair with e-readers February 22 of 2010
Okay, I admit I was suspicious at first. I’m basically a Luddite at heart and the idea of reading a book without an actual, physical copy in hand – the scent of freshly printed pages pervading my senses and bringing pleasant memories of a bygone era when all books came in this form—seemed nothing short of heresy. Also, there was the sticky i(...)
Today’s AAAAHHH FACTOR for January 2010 February 22 of 2010
Today’s AAAAHHH FACTOR for January 2010:
NATURAL WONDER: After the Winter Solstice we can celebrate almost three more minutes of light each and every day!
NEW YEAR’S GUIDED IMAGING MEDITATION—3 minutes
BREATHE, SIMPLY BREATHE
Plant your feet solidly on the ever-receptive Earth. Place your left hand on your Deep Belly or bottom (...)
Into The Air by Jackson Melnick February 22 of 2010
The following poem is by my friend Jackson Melnick from his recent poetry collection, “I Can Only Pray.” Jackson has been walking a Green Man/Poet/Warrior Path with me for four years. He is now 15 years old, and will be setting off at the end of January for a 5 month, world-wide Walkabout, beginning in Israel and concluding with studies in B(...)
Heirloom vs, Hybrid - A Word From Our Gardening Expert February 22 of 2010
Heirloom vs. Hybrid.
There is a great trend with Heirloom vegetables that we totally embrace here at Vintage Hill. Kind of like chickens, the old home grown kind are the best in flavor. Not unlike chickens that have been bred to become a boneless breast in a frozen package, many modern vegetables have been bred for a trait or group of trai(...)
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.