Вы находитесь на странице: 1из 16

(function() { var a=window;function f(e){this.t={};this.tick=function(d,b,c){var i=c?

c:(new
Date).getTime();this.t[d]=[i,b]};this.tick("start",null,e)}var g=new
f;a.jstiming={Timer:f,load:g};try{a.jstiming.pt=a.external.pageT}catch(h){};a.tickAboveFold=function(e){var
d,b=e,c=0;if(b.offsetParent){do c+=b.offsetTop;while(b=b.offsetParent)}d=c;d<=750&&a.jstiming.load.tick("aft")};var
j=false;function k(){if(!j){j=true;a.jstiming.load.tick("firstScrollTime")}}a.addEventListener?
a.addEventListener("scroll",k,false):a.attachEvent("onscroll",k); })();(function() { var a=window;function f(e)
{this.t={};this.tick=function(d,b,c){var i=c?c:(new Date).getTime();this.t[d]=[i,b]};this.tick("start",null,e)}var g=new
f;a.jstiming={Timer:f,load:g};try{a.jstiming.pt=a.external.pageT}catch(h){};a.tickAboveFold=function(e){var
d,b=e,c=0;if(b.offsetParent){do c+=b.offsetTop;while(b=b.offsetParent)}d=c;d<=750&&a.jstiming.load.tick("aft")};var
j=false;function k(){if(!j){j=true;a.jstiming.load.tick("firstScrollTime")}}a.addEventListener?
a.addEventListener("scroll",k,false):a.attachEvent("onscroll",k); })();//<![CDATA[

//** Tab Content script v2.0- Dynamic Drive DHTML code library (http://www.dynamicdrive.com)

//** Updated Oct 7th, 07 to version 2.0. Contains numerous improvements:

// -Added Auto Mode: Script auto rotates the tabs based on an interval, until a tab is explicitly selected

// -Ability to expand/contract arbitrary DIVs on the page as the tabbed content is expanded/ contracted

// -Ability to dynamically select a tab either based on its position within its peers, or its ID attribute (give the target tab one 1st)

// -Ability to set where the CSS classname "selected" get assigned- either to the target tab's link ("A"), or its parent container

//** Updated Feb 18th, 08 to version 2.1: Adds a "tabinstance.cycleit(dir)" method to cycle forward or backward between tabs
dynamically

//** Updated April 8th, 08 to version 2.2: Adds support for expanding a tab using a URL parameter (ie:
http://mysite.com/tabcontent.htm?tabinterfaceid=0)

////NO NEED TO EDIT BELOW////////////////////////

function ddtabcontent(tabinterfaceid){

this.tabinterfaceid=tabinterfaceid //ID of Tab Menu main container

this.tabs=document.getElementById(tabinterfaceid).getElementsByTagName("a") //Get all tab links within


container

this.enabletabpersistence=true

this.hottabspositions=[] //Array to store position of tabs that have a "rel" attr defined, relative to all tab links, within
container

this.currentTabIndex=0 //Index of currently selected hot tab (tab with sub content) within hottabspositions[] array

this.subcontentids=[] //Array to store ids of the sub contents ("rel" attr values)

this.revcontentids=[] //Array to store ids of arbitrary contents to expand/contact as well ("rev" attr values)

this.selectedClassTarget="link" //keyword to indicate which target element to assign "selected" CSS class
("linkparent" or "link")

ddtabcontent.getCookie=function(Name){

var re=new RegExp(Name+"=[^;]+", "i"); //construct RE to search for target name/value pair

if (document.cookie.match(re)) //if cookie found

return document.cookie.match(re)[0].split("=")[1] //return its value

return ""

ddtabcontent.setCookie=function(name, value){

document.cookie = name+"="+value+";path=/" //cookie value is domain wide (path=/)

ddtabcontent.prototype={

expandit:function(tabid_or_position){ //PUBLIC function to select a tab either by its ID or position(int) within its
peers

this.cancelautorun() //stop auto cycling of tabs (if running)

var tabref=""

try{

if (typeof tabid_or_position=="string" &&


document.getElementById(tabid_or_position).getAttribute("rel")) //if specified tab contains "rel" attr

tabref=document.getElementById(tabid_or_position)

else if (parseInt(tabid_or_position)!=NaN &&


this.tabs[tabid_or_position].getAttribute("rel")) //if specified tab contains "rel" attr

tabref=this.tabs[tabid_or_position]

catch(err){alert("Invalid Tab ID or position entered!")}

if (tabref!="") //if a valid tab is found based on function parameter

this.expandtab(tabref) //expand this tab

},

cycleit:function(dir, autorun){ //PUBLIC function to move foward or backwards through each hot tab
(tabinstance.cycleit('foward/back') )

if (dir=="next"){

var currentTabIndex=(this.currentTabIndex<this.hottabspositions.length-1)?
this.currentTabIndex+1 : 0

else if (dir=="prev"){

var currentTabIndex=(this.currentTabIndex>0)? this.currentTabIndex-1 :


this.hottabspositions.length-1

if (typeof autorun=="undefined") //if cycleit() is being called by user, versus autorun() function

this.cancelautorun() //stop auto cycling of tabs (if running)

this.expandtab(this.tabs[this.hottabspositions[currentTabIndex]])

},

setpersist:function(bool){ //PUBLIC function to toggle persistence feature

this.enabletabpersistence=bool

},

setselectedClassTarget:function(objstr){ //PUBLIC function to set which target element to assign "selected" CSS
class ("linkparent" or "link")

this.selectedClassTarget=objstr || "link"

},

getselectedClassTarget:function(tabref){ //Returns target element to assign "selected" CSS class to

return (this.selectedClassTarget==("linkparent".toLowerCase()))? tabref.parentNode : tabref

},

urlparamselect:function(tabinterfaceid){

var result=window.location.search.match(new RegExp(tabinterfaceid+"=(\\d+)", "i")) //check for "?


tabinterfaceid=2" in URL

return (result==null)? null : parseInt(RegExp.$1) //returns null or index, where index (int) is the
selected tab's index

},

expandtab:function(tabref){

var subcontentid=tabref.getAttribute("rel") //Get id of subcontent to expand

//Get "rev" attr as a string of IDs in the format ",john,george,trey,etc," to easily search through

var associatedrevids=(tabref.getAttribute("rev"))? ","+tabref.getAttribute("rev").replace(/\s+/, "")+"," :


""

this.expandsubcontent(subcontentid)

this.expandrevcontent(associatedrevids)

for (var i=0; i<this.tabs.length; i++){ //Loop through all tabs, and assign only the selected tab the
CSS class "selected"

this.getselectedClassTarget(this.tabs[i]).className=(this.tabs[i].getAttribute("rel")==subcontentid)? "selected" : ""

if (this.enabletabpersistence) //if persistence enabled, save selected tab position(int) relative to its
peers

ddtabcontent.setCookie(this.tabinterfaceid, tabref.tabposition)

this.setcurrenttabindex(tabref.tabposition) //remember position of selected tab within


hottabspositions[] array

},

expandsubcontent:function(subcontentid){

for (var i=0; i<this.subcontentids.length; i++){

var subcontent=document.getElementById(this.subcontentids[i]) //cache current


subcontent obj (in for loop)

subcontent.style.display=(subcontent.id==subcontentid)? "block" : "none" //"show" or


hide sub content based on matching id attr value

},

expandrevcontent:function(associatedrevids){

var allrevids=this.revcontentids

for (var i=0; i<allrevids.length; i++){ //Loop through rev attributes for all tabs in this tab interface

//if any values stored within associatedrevids matches one within allrevids, expand
that DIV, otherwise, contract it

document.getElementById(allrevids[i]).style.display=(associatedrevids.indexOf(","+allrevids[i]+",")!=-1)? "block" :
"none"

},

setcurrenttabindex:function(tabposition){ //store current position of tab (within hottabspositions[] array)

for (var i=0; i<this.hottabspositions.length; i++){

if (tabposition==this.hottabspositions[i]){

this.currentTabIndex=i

break

},

autorun:function(){ //function to auto cycle through and select tabs based on a set interval

this.cycleit('next', true)

},

cancelautorun:function(){

if (typeof this.autoruntimer!="undefined")

clearInterval(this.autoruntimer)

},

init:function(automodeperiod){

var persistedtab=ddtabcontent.getCookie(this.tabinterfaceid) //get position of persisted tab


(applicable if persistence is enabled)

var selectedtab=-1 //Currently selected tab index (-1 meaning none)

var selectedtabfromurl=this.urlparamselect(this.tabinterfaceid) //returns null or index from:


tabcontent.htm?tabinterfaceid=index

this.automodeperiod=automodeperiod || 0

for (var i=0; i<this.tabs.length; i++){

this.tabs[i].tabposition=i //remember position of tab relative to its peers

if (this.tabs[i].getAttribute("rel")){

var tabinstance=this

this.hottabspositions[this.hottabspositions.length]=i //store position of


"hot" tab ("rel" attr defined) relative to its peers

this.subcontentids[this.subcontentids.length]=this.tabs[i].getAttribute("rel") //store id of sub content ("rel" attr value)

this.tabs[i].onclick=function(){

tabinstance.expandtab(this)

tabinstance.cancelautorun() //stop auto cycling of tabs (if


running)

return false

if (this.tabs[i].getAttribute("rev")){ //if "rev" attr defined, store each value


within "rev" as an array element

this.revcontentids=this.revcontentids.concat(this.tabs[i].getAttribute("rev").split(/\s*,\s*/))

if (selectedtabfromurl==i || this.enabletabpersistence &&


selectedtab==-1 && parseInt(persistedtab)==i || !this.enabletabpersistence && selectedtab==-1 &&
this.getselectedClassTarget(this.tabs[i]).className=="selected"){

selectedtab=i //Selected tab index, if found

} //END for loop

if (selectedtab!=-1) //if a valid default selected tab index is found

this.expandtab(this.tabs[selectedtab]) //expand selected tab (either from URL


parameter, persistent feature, or class="selected" class)

else //if no valid default selected index found

this.expandtab(this.tabs[this.hottabspositions[0]]) //Just select first tab that contains a


"rel" attr

if (parseInt(this.automodeperiod)>500 && this.hottabspositions.length>1){

this.autoruntimer=setInterval(function(){tabinstance.autorun()}, this.automodeperiod)

} //END int() function

} //END Prototype assignment

//]]>if (window.jstiming) window.jstiming.load.tick('headEnd');


function setAttributeOnload(object, attribute, val) {
if(window.addEventListener) {
window.addEventListener("load",
function(){ object[attribute] = val; }, false);
} else {
window.attachEvent('onload', function(){ object[attribute] = val; });
}
}

Object 1

skip to main | skip to sidebar

Home

Entries (RSS)

Comments (RSS)

<!--

Object 2

Monday, August 31, 2009 | Suscrbete va RSS


Search!

google_ad_client = "pub-1816677117814887";

google_ad_host = "pub-1599271086004685";
Object8

10,010
Gimp Effec...

[3638]

/* 728x15, created 1/25/09 */

google_ad_slot = "1832420779";

google_ad_width = 728;

google_ad_height = 15;

//-->google_protectAndRun("ads_core.google_render_ad", google_handleError, google_render_ad);

Home

Contactos

Template by: Free WordPress Themes y Zona Cerebral


if (window.jstiming) window.jstiming.load.tick('widgetJsBefore');_WidgetManager._Init('http://www.blogger.com/rearrange?
blogID=6055466196824209131', 'http://aa-gimp.blogspot.com/2009/07/simple-gradient-text-texteffect.html','6055466196824209131');

_WidgetManager._SetPageActionUrl('http://www.blogger.com/display?blogID=6055466196824209131', 'ul9pZysCRYXPhYLfLGm9daWA9U:1251251536584');

_WidgetManager._SetDataContext([{'name': 'blog', 'data': {'title': 'GIMP TUTORIAL | FREE GIMP TUTORIAL | COOL GIMP
TUTORIAL', 'pageType': 'item', 'url': 'http://aa-gimp.blogspot.com/2009/07/simple-gradient-text-text-effect.html', 'homepageUrl':
'http://aa-gimp.blogspot.com/', 'enabledCommentProfileImages': false, 'searchLabel': '', 'searchQuery': '', 'pageName': 'Simple
gradient text (text effect)', 'pageTitle': 'GIMP TUTORIAL | FREE GIMP TUTORIAL | COOL GIMP TUTORIAL: Simple gradient
text (text effect)', 'encoding': 'UTF-8', 'locale': 'en', 'isPrivate': false, 'languageDirection': 'ltr', 'feedLinks': '\74link
rel\75\42alternate\42 type\75\42application/atom+xml\42 title\75\42GIMP TUTORIAL | FREE GIMP TUTORIAL | COOL GIMP
TUTORIAL - Atom\42 href\75\42http://aa-gimp.blogspot.com/feeds/posts/default\42 /\76\n\74link rel\75\42alternate\42
type\75\42application/rss+xml\42 title\75\42GIMP TUTORIAL | FREE GIMP TUTORIAL | COOL GIMP TUTORIAL - RSS\42
href\75\42http://aa-gimp.blogspot.com/feeds/posts/default?alt\75rss\42 /\76\n\74link rel\75\42service.post\42
type\75\42application/atom+xml\42 title\75\42GIMP TUTORIAL | FREE GIMP TUTORIAL | COOL GIMP TUTORIAL - Atom\42
href\75\42http://www.blogger.com/feeds/6055466196824209131/posts/default\42 /\76\n\74link rel\75\42EditURI\42
type\75\42application/rsd+xml\42 title\75\42RSD\42 href\75\42http://www.blogger.com/rsd.g?
blogID\0756055466196824209131\42 /\76\n\74link rel\75\42alternate\42 type\75\42application/atom+xml\42 title\75\42GIMP
TUTORIAL | FREE GIMP TUTORIAL | COOL GIMP TUTORIAL - Atom\42 href\75\42http://aagimp.blogspot.com/feeds/3619830444187158082/comments/default\42 /\76\n', 'meTag': '', 'openIdOpTag': '',
'latencyHeadScript': '\74script type\75\42text/javascript\42\76(function() { var a\75window;function f(e)
{this.t\75{};this.tick\75function(d,b,c){var i\75c?c:(new Date).getTime();this.t[d]\75[i,b]};this.tick(\42start\42,null,e)}var g\75new
f;a.jstiming\75{Timer:f,load:g};try{a.jstiming.pt\75a.external.pageT}catch(h){};a.tickAboveFold\75function(e){var
d,b\75e,c\0750;if(b.offsetParent){do
c+\75b.offsetTop;while(b\75b.offsetParent)}d\75c;d\74\075750\46\46a.jstiming.load.tick(\42aft\42)};var j\75false;function k(){if(!j)
{j\75true;a.jstiming.load.tick(\42firstScrollTime\42)}}a.addEventListener?
a.addEventListener(\42scroll\42,k,false):a.attachEvent(\42onscroll\42,k); })();\74/script\076'}}]);

_WidgetManager._SetSystemMarkup({'layout': {'varName': '', 'template': '\74div class\75\47widget-wrap1\47\76\n\74div


class\75\47widget-wrap2\47\76\n\74div class\75\47widget-wrap3\47\76\n\74div class\75\47widget-content\47\76\n\74div
class\75\47layout-title\47\76\74data:layout-title\76\74/data:layout-title\76\74/div\76\n\74a class\75\47editlink\47
expr:href\75\47data:widget.quickEditUrl\47 expr:onclick\75\47\46quot;return
_WidgetManager._PopupConfig(document.getElementById(\\\46quot;\46quot; +
data:widget.instanceId + \
46quot;\\\46quot;));\46quot;\47 target\75\47chooseWidget\47\76\74data:edit-link\76\74/data:editlink\76\74/a\76\n\74/div\76\n\74/div\76\n\74/div\76\n\74/div\076'}, 'quickedit': {'varName': '', 'template': '\74div
class\75\47clear\47\76\74/div\76\n\74span class\75\47widget-item-control\47\76\n\74span class\75\47item-control blogadmin\47\76\n\74a class\75\47quickedit\47 expr:href\75\47data:widget.quickEditUrl\47 expr:onclick\75\47\46quot;return
_WidgetManager._PopupConfig(document.getElementById(\\\46quot;\46quot; +
data:widget.instanceId + \
46quot;\\\46quot;));\46quot;\47 expr:target\75\47\46quot;config\46quot; + data:widget.instanceId\47 expr:title\75\47data:editlink\47\76\n\74img alt\75\47\47 height\75\04718\47 src\75\47http://img1.blogblog.com/img/icon18_wrench_allbkg.png\47
width\75\04718\47/\76\n\74/a\76\n\74/span\76\n\74/span\76\n\74div class\75\47clear\47\76\74/div\076'}, 'all-head-content':
{'varName': 'page', 'template': '\74data:blog.latencyHeadScript\76\74/data:blog.latencyHeadScript\76\n\74meta
expr:content\75\47\46quot;text/html; charset\75\46quot; + data:page.encoding\47 http-equiv\75\47ContentType\47/\76\n\74meta content\75\47true\47 name\75\47MSSmartTagsPreventParsing\47/\76\n\74meta content\75\47blogger\47
name\75\47generator\47/\76\n\74link href\75\47http://www.blogger.com/favicon.ico\47 rel\75\47icon\47
type\75\47image/vnd.microsoft.icon\47/\76\n\74link expr:href\75\47data:blog.url\47
rel\75\47canonical\47/\76\n\74data:blog.feedLinks\76\74/data:blog.feedLinks\76\n\74data:blog.meTag\76\74/data:blog.meTag\7
6\n\74data:blog.openIdOpTag\76\74/data:blog.openIdOpTag\076'}});

_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML8', 'lsidebarc',{'main': {'varName': '', 'template': '\74b:if


cond\75\47data:title !\75 \46quot;\46quot;\47\76\n\74h2
class\75\47title\47\76\74data:title\76\74/data:title\76\74/h2\76\n\74/b:if\76\n\74div class\75\47widgetcontent\47\76\n\74data:content\76\74/data:content\76\n\74/div\76\n\74b:include name\75\47quickedit\47\76\74/b:include\076'}},
document.getElementById('HTML8'), {}, 'displayModeFull'));

_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML1', 'lsidebarc',{'main': {'varName': '', 'template': '\74b:if


cond\75\47data:title !\75 \46quot;\46quot;\47\76\n\74h2
class\75\47title\47\76\74data:title\76\74/data:title\76\74/h2\76\n\74/b:if\76\n\74div class\75\47widgetcontent\47\76\n\74data:content\76\74/data:content\76\n\74/div\76\n\74b:include name\75\47quickedit\47\76\74/b:include\076'}},

document.getElementById('HTML1'), {}, 'displayModeFull'));

_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML5', 'lsidebarc',{'main': {'varName': '', 'template': '\74b:if


cond\75\47data:title !\75 \46quot;\46quot;\47\76\n\74h2
class\75\47title\47\76\74data:title\76\74/data:title\76\74/h2\76\n\74/b:if\76\n\74div class\75\47widgetcontent\47\76\n\74data:content\76\74/data:content\76\n\74/div\76\n\74b:include name\75\47quickedit\47\76\74/b:include\076'}},
document.getElementById('HTML5'), {}, 'displayModeFull'));

_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML2', 'lsidebarc',{'main': {'varName': '', 'template': '\74b:if


cond\75\47data:title !\75 \46quot;\46quot;\47\76\n\74h2
class\75\47title\47\76\74data:title\76\74/data:title\76\74/h2\76\n\74/b:if\76\n\74div class\75\47widgetcontent\47\76\n\74data:content\76\74/data:content\76\n\74/div\76\n\74b:include name\75\47quickedit\47\76\74/b:include\076'}},
document.getElementById('HTML2'), {}, 'displayModeFull'));

_WidgetManager._RegisterWidget('_NavbarView', new _WidgetInfo('Navbar1', 'navbar'));

_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML4', 'rsidebarc',{'main': {'varName': '', 'template': '\74b:if


cond\75\47data:title !\75 \46quot;\46quot;\47\76\n\74h2
class\75\47title\47\76\74data:title\76\74/data:title\76\74/h2\76\n\74/b:if\76\n\74div class\75\47widgetcontent\47\76\n\74data:content\76\74/data:content\76\n\74/div\76\n\74b:include name\75\47quickedit\47\76\74/b:include\076'}},
document.getElementById('HTML4'), {}, 'displayModeFull'));

_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML3', 'rsidebarc',{'main': {'varName': '', 'template': '\74b:if


cond\75\47data:title !\75 \46quot;\46quot;\47\76\n\74h2
class\75\47title\47\76\74data:title\76\74/data:title\76\74/h2\76\n\74/b:if\76\n\74div class\75\47widgetcontent\47\76\n\74data:content\76\74/data:content\76\n\74/div\76\n\74b:include name\75\47quickedit\47\76\74/b:include\076'}},
document.getElementById('HTML3'), {}, 'displayModeFull'));

_WidgetManager._RegisterWidget('_LabelView', new _WidgetInfo('Label1', 'rsidebarc',{'main': {'varName': '', 'template': '\74b:if


cond\75\47data:title\47\76\n\74h2\76\74data:title\76\74/data:title\76\74/h2\76\n\74/b:if\76\n\74div
expr:class\75\47\46quot;widget-content \46quot; + data:display + \46quot;-label-widget-content\46quot;\47\76\n\74b:if
cond\75\47data:display \75\75 \46quot;list\46quot;\47\76\n\74ul\76\n\74b:loop values\75\47data:labels\47
var\75\47label\47\76\n\74li\76\n\74b:if cond\75\47data:blog.url \75\75 data:label.url\47\76\n\74span
expr:dir\75\47data:blog.languageDirection\47\76\74data:label.name\76\74/data:label.name\76\74/span\76\n\74b:else\76\74/b:el
se\76\n\74a expr:dir\75\47data:blog.languageDirection\47
expr:href\75\47data:label.url\47\76\74data:label.name\76\74/data:label.name\76\74/a\76\n\74/b:if\76\n\74b:if
cond\75\47data:showFreqNumbers\47\76\n\74span
dir\75\47ltr\47\76(\74data:label.count\76\74/data:label.count\76)\74/span\76\n\74/b:if\76\n\74/li\76\n\74/b:loop\76\n\74/ul\76\n\74
b:else\76\74/b:else\76\n\74b:loop values\75\47data:labels\47 var\75\47label\47\76\n\74span expr:class\75\47\46quot;labelsize-\46quot; + data:label.cssSize\47\76\n\74b:if cond\75\47data:blog.url \75\75 data:label.url\47\76\n\74span
expr:dir\75\47data:blog.languageDirection\47\76\74data:label.name\76\74/data:label.name\76\74/span\76\n\74b:else\76\74/b:el
se\76\n\74a expr:dir\75\47data:blog.languageDirection\47
expr:href\75\47data:label.url\47\76\74data:label.name\76\74/data:label.name\76\74/a\76\n\74/b:if\76\n\74b:if
cond\75\47data:showFreqNumbers\47\76\n\74span
dir\75\47ltr\47\76(\74data:label.count\76\74/data:label.count\76)\74/span\76\n\74/b:if\76\n\74/span\76\n\74/b:loop\76\n\74/b:if\76
\n\74b:include name\75\47quickedit\47\76\74/b:include\76\n\74/div\076'}}, document.getElementById('Label1'), {},
'displayModeFull'));

_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML6', 'main',{'main': {'varName': '', 'template': '\74b:if


cond\75\47data:title !\75 \46quot;\46quot;\47\76\n\74h2
class\75\47title\47\76\74data:title\76\74/data:title\76\74/h2\76\n\74/b:if\76\n\74div class\75\47widgetcontent\47\76\n\74data:content\76\74/data:content\76\n\74/div\76\n\74b:include name\75\47quickedit\47\76\74/b:include\076'}},
document.getElementById('HTML6'), {}, 'displayModeFull'));

_WidgetManager._RegisterWidget('_BlogView', new _WidgetInfo('Blog1', 'main',{'main': {'varName': 'top', 'template': '\74div


class\75\47blog-posts hfeed\47\76\n\74b:include data\75\47top\47 name\75\47statusmessage\47\76\74/b:include\76\n\74data:defaultAdStart\76\74/data:defaultAdStart\76\n\74b:loop values\75\47data:posts\47
var\75\47post\47\76\n\74b:if cond\75\47data:post.dateHeader\47\76\n\74h2 class\75\47dateheader\47\76\74data:post.dateHeader\76\74/data:post.dateHeader\76\74/h2\76\n\74/b:if\76\n\74b:include data\75\47post\47
name\75\47post\47\76\74/b:include\76\n\74b:if cond\75\47data:blog.pageType \75\75 \
46quot;static_page\46quot;\47\76\n\74b:include data\75\47post\47
name\75\47comments\47\76\74/b:include\76\n\74/b:if\76\n\74b:if cond\75\47data:blog.pageType \75\75 \
46quot;item\46quot;\47\76\n\74b:include data\75\47post\47 name\75\47comments\47\76\74/b:include\76\n\74/b:if\76\n\74b:if
cond\75\47data:post.includeAd\47\76\n\74b:if

cond\75\47data:post.isFirstPost\47\76\n\74data:defaultAdEnd\76\74/data:defaultAdEnd\76\n\74b:else\76\74/b:else\76\n\74data:
adEnd\76\74/data:adEnd\76\n\74/b:if\76\n\74div class\75\47inlinead\47\76\n\74data:adCode\76\74/data:adCode\76\n\74/div\76\n\74data:adStart\76\74/data:adStart\76\n\74/b:if\76\n\74b:if
cond\75\47data:post.trackLatency\47\76\n\74data:post.latencyJs\76\74/data:post.latencyJs\76\n\74/b:if\76\n\74/b:loop\76\n\74d
ata:adEnd\76\74/data:adEnd\76\n\74/div\76\n\74b:include name\75\47nextprev\47\76\74/b:include\76\n\74b:include
name\75\47feedLinks\47\76\74/b:include\76\n\74b:if cond\75\47data:top.showStars\47\76\n\74script
src\75\47http://www.google.com/jsapi\47 type\75\47text/javascript\47\76\74/script\76\n\74script type\75\47text/javascript\47\76\n
google.load(\46quot;annotations\46quot;, \46quot;1\46quot;, {\46quot;locale\46quot;: \
46quot;\74data:top.languageCode\76\74/data:top.languageCode\76\46quot;});\n
function initialize() {\n
google.annotations.setApplicationId(\74data:top.blogspotReviews\76\74/data:top.blogspotReviews\76);\n
google.annotations.createAll();\n
google.annotations.fetch();\n
}\n
google.setOnLoadCallback(initialize);\n \
74/script\76\n\74/b:if\076'}, 'nextprev': {'varName': '', 'template': '\74div class\75\47blog-pager\47 id\75\47blogpager\47\76\n\74b:if cond\75\47data:newerPageUrl\47\76\n\74span id\75\47blog-pager-newer-link\47\76\n\74a class\75\47blogpager-newer-link\47 expr:href\75\47data:newerPageUrl\47 expr:id\75\47data:widget.instanceId + \46quot;_blog-pager-newerlink\46quot;\47
expr:title\75\47data:newerPageTitle\47\76\74data:newerPageTitle\76\74/data:newerPageTitle\76\74/a\76\n\74/span\76\n\74/b:if\
76\n\74b:if cond\75\47data:olderPageUrl\47\76\n\74span id\75\47blog-pager-older-link\47\76\n\74a class\75\47blog-pagerolder-link\47 expr:href\75\47data:olderPageUrl\47 expr:id\75\47data:widget.instanceId + \46quot;_blog-pager-olderlink\46quot;\47
expr:title\75\47data:olderPageTitle\47\76\74data:olderPageTitle\76\74/data:olderPageTitle\76\74/a\76\n\74/span\76\n\74/b:if\76\
n\74b:if cond\75\47data:blog.homepageUrl !\75 data:blog.url\47\76\n\74a class\75\47home-link\47
expr:href\75\47data:blog.homepageUrl\47\76\74data:homeMsg\76\74/data:homeMsg\76\74/a\76\n\74b:else\76\74/b:else\76\n\7
4b:if cond\75\47data:newerPageUrl\47\76\n\74a class\75\47home-link\47
expr:href\75\47data:blog.homepageUrl\47\76\74data:homeMsg\76\74/data:homeMsg\76\74/a\76\n\74/b:if\76\n\74/b:if\76\n\74/di
v\76\n\74div class\75\47clear\47\76\74/div\076'}, 'post': {'varName': 'post', 'template': '\74div class\75\47post hentry
uncustomized-post-template\47\76\n\74a expr:name\75\47data:post.id\47\76\74/a\76\n\74b:if
cond\75\47data:post.title\47\76\n\74h3 class\75\47post-title entry-title\47\76\n\74b:if cond\75\47data:post.link\47\76\n\74a
expr:href\75\47data:post.link\47\76\74data:post.title\76\74/data:post.title\76\74/a\76\n\74b:else\76\74/b:else\76\n\74b:if
cond\75\47data:post.url\47\76\n\74a
expr:href\75\47data:post.url\47\76\74data:post.title\76\74/data:post.title\76\74/a\76\n\74b:else\76\74/b:else\76\n\74data:post.title
\76\74/data:post.title\76\n\74/b:if\76\n\74/b:if\76\n\74/h3\76\n\74/b:if\76\n\74div class\75\47post-header-line1\47\76\74/div\76\n\74div class\75\47post-body entry-content\47\76\n\74b:if cond\75\47data:blog.pageType \75\75 \
46quot;item\46quot;\47\76\n\74style\76.fullpost{display:inline;}\74/style\76\n\46lt;!-- You will NOT be able to see the ad on your
site! This unit is hidden on your page, and will only display to your search engine traffic (from US and CA). To preview, paste the
code up on your site, then add #chitikatest\75mortgage to the end of your URL in your browser\46#39;s address bar. Example:
www.yourwebsite.com#chitikatest\75mortgage. This will show you what the ad would look like to a user who is interested in \
46quot;mortgages.\46quot; --\46gt;\n\46lt;script type\75\46quot;text/javascript\46quot;\46gt;\46lt;!--\nch_client \75 \
46quot;supris\46quot;;\nch_type \75 \46quot;mpu\46quot;;\nch_width \75 468;\nch_height \75 120;\nch_color_bg \75 \
46quot;ffffff\46quot;;\nch_color_border \75 \46quot;ffffff\46quot;;\nch_color_title \75 \
46quot;026767\46quot;;\nch_color_site_link \75 \46quot;026767\46quot;;\nch_color_text \75 \
46quot;999999\46quot;;\nch_non_contextual \75 4;\nch_vertical \75\46quot;premium\46quot;;\nch_font_title \75 \
46quot;Verdana\46quot;;\nch_font_text \75 \46quot;Verdana\46quot;;\nch_sid \75 \46quot;Chitika Premium\46quot;;\nvar
ch_queries \75 new Array( );\nvar ch_selected\75Math.floor((Math.random()*ch_queries.length));\nif ( ch_selected \46lt;
ch_queries.length ) {\nch_query \75 ch_queries[ch_selected];\n}\n//--\46gt;\46lt;/script\46gt;\n\46lt;script
src\75\46quot;http://scripts.chitika.net/eminimalls/amm.js\46quot;
type\75\46quot;text/javascript\46quot;\46gt;\n\46lt;/script\46gt;\n\74b:if cond\75\47data:blog.pageType \75\75 \
46quot;item\46quot;\47\76\n\46lt;script type\75\46quot;text/javascript\46quot;\46gt;\46lt;!--\ngoogle_ad_client \75 \46quot;pub1816677117814887\46quot;;\ngoogle_ad_host \75 \46quot;pub-1599271086004685\46quot;;\n/* 250x250, created 7/5/09
*/\ngoogle_ad_slot \75 \46quot;1206081093\46quot;;\ngoogle_ad_width \75 250;\ngoogle_ad_height \75
250;\n//--\46gt;\n\46lt;/script\46gt;\n\46lt;script
type\75\46quot;text/javascript\46quot;\nsrc\75\46quot;http://pagead2.googlesyndication.com/pagead/show_ads.js\46quot;\46gt;\
n\46lt;/script\46gt;\n\74br/\76\n\74/b:if\76\n\74p\76\74data:post.body\76\74/data:post.body\76\74/p\76\n\74b:if
cond\75\47data:blog.pageType \75\75 \46quot;item\46quot;\47\76\n\74div class\75\47similiar\47\76\n\74span
class\75\47box\47\76\n\74div class\75\47widget-content\47\76\n\74h3\76Related Tutorial:\74/h3\76\n\74div
id\75\47data2007\47\76\74/div\76\74br/\76\74br/\76\n\74script type\75\47text/javascript\47\76\n\nvar homeUrl3 \75 \
46quot;\74data:blog.homepageUrl\76\74/data:blog.homepageUrl\76\46quot;;\nvar maxNumberOfPostsPerLabel \75 4;\nvar
maxNumberOfLabels \75 10;\n\nmaxNumberOfPostsPerLabel \75 6;\nmaxNumberOfLabels \75 100;\n\nfunction
listEntries10(json) {\nvar ul \75 document.createElement(\46#39;ul\46#39;);\nvar maxPosts \75 (json.feed.entry.length \46lt;\75
maxNumberOfPostsPerLabel) ?\njson.feed.entry.length : maxNumberOfPostsPerLabel;\nfor (var i \75 0; i \46lt; maxPosts; i++)
{\nvar entry \75 json.feed.entry[i];\nvar alturl;\n\nfor (var k \75 0; k \46lt; entry.link.length; k++) {\nif (entry.link[k].rel \75\75 \
46#39;alternate\46#39;) {\nalturl \75 entry.link[k].href;\nbreak;\n}\n}\nvar li \75 document.createElement(\46#39;li\46#39;);\nvar a
\75 document.createElement(\46#39;a\46#39;);\na.href \75 alturl;\n\nif(a.href!\75location.href) {\nvar txt \75
document.createTextNode(entry.title.$t);\na.appendChild(txt);\nli.appendChild(a);\nul.appendChild(li);\n}\n}\nfor (var l \75 0; l \
46lt; json.feed.link.length; l++) {\nif (json.feed.link[l].rel \75\75 \46#39;alternate\46#39;) {\nvar raw \75 json.feed.link[l].href;\nvar
label \75 raw.substr(homeUrl3.length+13);\nvar k;\nfor (k\0750; k\46lt;20; k++) label \75 label.replace(\46quot;%20\46quot;, \
46quot; \46quot;);\nvar txt \75 document.createTextNode(label);\nvar h \75
document.createElement(\46#39;b\46#39;);\nh.appendChild(txt);\nvar div1 \75
document.createElement(\46#39;div\46#39;);\ndiv1.appendChild(h);\ndiv1.appendChild(ul);\ndocument.getElementById(\46#39;
data2007\46#39;).appendChild(div1);\n}\n}\n}\nfunction search10(query, label) {\n\nvar script \75
document.createElement(\46#39;script\46#39;);\nscript.setAttribute(\46#39;src\46#39;, query + \
46#39;feeds/posts/default/-/\46#39;\n+ label +\n\46#39;?alt\75json-inscript\46amp;callback\75listEntries10\46#39;);\nscript.setAttribute(\46#39;type\46#39;, \
46#39;text/javascript\46#39;);\ndocument.documentElement.firstChild.appendChild(script);\n}\n\nvar labelArray \75 new
Array();\nvar numLabel \75 0;\n\n\74b:loop values\75\47data:posts\47 var\75\47post\47\76\n\74b:loop
values\75\47data:post.labels\47 var\75\47label\47\76\ntextLabel \75 \

46quot;\74data:label.name\76\74/data:label.name\76\46quot;;\n\nvar test \75 0;\nfor (var i \75 0; i \46lt; labelArray.length; i++)\nif


(labelArray[i] \75\75 textLabel) test \75 1;\nif (test \75\75 0) {\nlabelArray.push(textLabel);\nvar maxLabels \75
(labelArray.length \46lt;\75 maxNumberOfLabels) ?\nlabelArray.length : maxNumberOfLabels;\nif (numLabel \46lt; maxLabels)
{\nsearch10(homeUrl3, textLabel);\nnumLabel+
+;\n}\n}\n\74/b:loop\76\n\74/b:loop\76\n\74/script\76\n\74/div\76\n\74/span\76\74/div\76\n\74/b:if\76\n\74b:else\76\74/b:else\76\n\
74style\76.fullpost{display:none;}\74/style\76\n\74p\76\74data:post.body\76\74/data:post.body\76\74/p\76\n\74a
expr:href\75\47data:post.url\47\76Read More......\74/a\76\n\74/b:if\76\n\74div style\75\47clear:
both;\47\76\74/div\76\n\74/div\76\n\74div class\75\47post-footer\47\76\n\74div class\75\47post-footer-line post-footer-line1\47\76\n\74span class\75\47post-author vcard\47\76\n\74b:if
cond\75\47data:top.showAuthor\47\76\n\74data:top.authorLabel\76\74/data:top.authorLabel\76\n\74span
class\75\47fn\47\76\74data:post.author\76\74/data:post.author\76\74/span\76\n\74/b:if\76\n\74/span\76\n\74span
class\75\47post-timestamp\47\76\n\74b:if
cond\75\47data:top.showTimestamp\47\76\n\74data:top.timestampLabel\76\74/data:top.timestampLabel\76\n\74b:if
cond\75\47data:post.url\47\76\n\74a class\75\47timestamp-link\47 expr:href\75\47data:post.url\47 rel\75\47bookmark\47
title\75\47permanent link\47\76\74abbr class\75\47published\47
expr:title\75\47data:post.timestampISO8601\47\76\74data:post.timestamp\76\74/data:post.timestamp\76\74/abbr\76\74/a\76\n\7
4/b:if\76\n\74/b:if\76\n\74/span\76\n\74span class\75\47star-ratings\47\76\n\74b:if cond\75\47data:top.showStars\47\76\n\74div
expr:g:background-color\75\47data:backgroundColor\47 expr:g:text-color\75\47data:textColor\47
expr:g:url\75\47data:post.absoluteUrl\47 g:height\75\04742\47 g:type\75\47RatingPanel\47
g:width\75\047280\47\76\74/div\76\n\74/b:if\76\n\74/span\76\n\74span class\75\47post-comment-link\47\76\n\74b:if
cond\75\47data:blog.pageType !\75 \46quot;item\46quot;\47\76\n\74b:if cond\75\47data:post.allowComments\47\76\n\74a
class\75\47comment-link\47 expr:href\75\47data:post.addCommentUrl\47
expr:onclick\75\47data:post.addCommentOnclick\47\76\74b:if cond\75\47data:post.numComments \75\75 1\47\0761 \
74data:top.commentLabel\76\74/data:top.commentLabel\76\74b:else\76\74/b:else\76\74data:post.numComments\76\74/data:po
st.numComments\76\n\74data:top.commentLabelPlural\76\74/data:top.commentLabelPlural\76\74/b:if\76\74/a\76\n\74/b:if\76\n\
74/b:if\76\n\74/span\76\n\74span class\75\47post-backlinks post-comment-link\47\76\n\74b:if
cond\75\47data:blog.pageType !\75 \46quot;item\46quot;\47\76\n\74b:if cond\75\47data:post.showBacklinks\47\76\n\74a
class\75\47comment-link\47 expr:href\75\47data:post.url + \
46quot;#links\46quot;\47\76\74data:top.backlinkLabel\76\74/data:top.backlinkLabel\76\74/a\76\n\74/b:if\76\n\74/b:if\76\n\74/spa
n\76\n\74span class\75\47post-icons\47\76\n\74b:if cond\75\47data:post.emailPostUrl\47\76\n\74span class\75\47itemaction\47\76\n\74a expr:href\75\47data:post.emailPostUrl\47 expr:title\75\47data:top.emailPostMsg\47\76\n\74img alt\75\47\47
class\75\47icon-action\47
src\75\47http://www.blogger.com/img/icon18_email.gif\47/\76\n\74/a\76\n\74/span\76\n\74/b:if\76\n\74b:include
data\75\47post\47 name\75\47postQuickEdit\47\76\74/b:include\76\n\74/span\76\n\74/div\76\n\74div class\75\47post-footer-line
post-footer-line-2\47\76\n\74span class\75\47post-labels\47\76\n\74b:if
cond\75\47data:post.labels\47\76\n\74data:postLabelsLabel\76\74/data:postLabelsLabel\76\n\74b:loop
values\75\47data:post.labels\47 var\75\47label\47\76\n\74a expr:href\75\47data:label.url\47
rel\75\47tag\47\76\74data:label.name\76\74/data:label.name\76\74/a\76\74b:if cond\75\47data:label.isLast !\75 \
46quot;true\46quot;\47\76,\74/b:if\76\n\74/b:loop\76\n\74/b:if\76\n\74/span\76\n\74/div\76\n\74div class\75\47post-footer-line
post-footer-line-3\47\76\74/div\76\n\74style type\75\47text/css\47\76\n.bookmark img { border: 0;\npadding:0px; }\n.bookmark
a:hover {\nposition: relative;\ntop: 1px;\nleft: 1px; }\n\74/style\76\74span class\75\47bookmark\47\76\74table align\75\47left\47
border\75\0470\47 cellpadding\75\0470\47 width\75\047100%\47\76\74tr\76\74td style\75\47vertical-align:middle\47
valign\75\47middle\47 width\75\04730%\47\76\74div expr:id\75\47\46quot;sbtxt\46quot;+data:post.id\47\76Bookmark this
post:\74span style\75\47display:none\47\76\74a href\75\47http://www.bloggerplugins.org\47\76Bloggerwidgets\74/a\76\n\74a
href\75\47http://www.bloggerplugins.org/2007/09/social-bookmarking-elements-after-each.html\47\76Social Bookmarking
Blogger Widget\74/a\76\74/span\76\74/div\76\74script type\75\47text/javascript\47\76showsbtext(\46quot;sbtxt\46quot; + \
46quot;\74data:post.id\76\74/data:post.id\76\46quot;,0)\74/script\76\74/td\76\74td\76\74a
expr:href\75\47\46quot;http://www.stumbleupon.com/submit?url\75\46quot; + data:post.url + \46quot;\46amp;title\75\46quot; +
data:post.title\47 expr:onmouseout\75\47\46quot;javascript:showsbtext(\\\46quot;sbtxt\46quot; + data:post.id + \
46quot;\\\46quot;,0);\46quot;\47 expr:onmouseover\75\47\46quot;javascript:showsbtext(\\\46quot;sbtxt\46quot; + data:post.id + \
46quot;\\\46quot;,19);\46quot;\47 rel\75\47nofollow\47 target\75\47_blank\47\76\74img alt\75\47StumpleUpon\47
src\75\47http://files.bloggerplugins.org/icon_sb_stumb.gif\47/\76\74/a\76\n\74a
expr:href\75\47\46quot;http://ma.gnolia.com/bookmarklet/add?url\75\46quot; + data:post.url + \46quot;\46amp;title\75\46quot; +
data:post.title\47 expr:onmouseout\75\47\46quot;javascript:showsbtext(\\\46quot;sbtxt\46quot; + data:post.id + \
46quot;\\\46quot;,0);\46quot;\47 expr:onmouseover\75\47\46quot;javascript:showsbtext(\\\46quot;sbtxt\46quot; + data:post.id + \
46quot;\\\46quot;,6);\46quot;\47 rel\75\47nofollow\47 target\75\47_blank\47\76\74img alt\75\47Ma.gnolia\47 border\75\0470\47
src\75\47http://files.bloggerplugins.org/icon_sb_mag.gif\47/\76\74/a\76\n\74a expr:href\75\47\46quot;http://digg.com/submit?
phase\0753\46amp;url\75\46quot; + data:post.url\47
expr:onmouseout\75\47\46quot;javascript:showsbtext(\\\46quot;sbtxt\46quot; + data:post.id + \46quot;\\\46quot;,0);\46quot;\47
expr:onmouseover\75\47\46quot;javascript:showsbtext(\\\46quot;sbtxt\46quot; + data:post.id + \46quot;\\\46quot;,1);\46quot;\47
rel\75\47nofollow\47 target\75\47_blank\47\76\74img alt\75\47DiggIt!\47
src\75\47http://files.bloggerplugins.org/icon_sb_dig.gif\47/\76\74/a\76\n\74a expr:href\75\47\46quot;http://del.icio.us/post?
url\75\46quot; + data:post.url + \46quot;\46amp;title\75\46quot; + data:post.title\47
expr:onmouseout\75\47\46quot;javascript:showsbtext(\\\46quot;sbtxt\46quot; + data:post.id + \46quot;\\\46quot;,0);\46quot;\47
expr:onmouseover\75\47\46quot;javascript:showsbtext(\\\46quot;sbtxt\46quot; + data:post.id + \46quot;\\\46quot;,2);\46quot;\47
rel\75\47nofollow\47 target\75\47_blank\47\76\74img alt\75\47Del.icio.us\47
src\75\47http://files.bloggerplugins.org/icon_sb_del.gif\47/\76\74/a\76\n\74a
expr:href\75\47\46quot;http://www.blinklist.com/index.php?
Action\75Blink/addblink.php\46amp;Description\75\46amp;Url\75\46quot; + data:post.url + \46quot;\46amp;Title\75\46quot; +
data:post.title\47 expr:onmouseout\75\47\46quot;javascript:showsbtext(\\\46quot;sbtxt\46quot; + data:post.id + \
46quot;\\\46quot;,0);\46quot;\47 expr:onmouseover\75\47\46quot;javascript:showsbtext(\\\46quot;sbtxt\46quot; + data:post.id + \
46quot;\\\46quot;,3);\46quot;\47 rel\75\47nofollow\47 target\75\47_blank\47\76\74img alt\75\47Blinklist\47
src\75\47http://files.bloggerplugins.org/icon_sb_bli.gif\47/\76\74/a\76\n\74a
expr:href\75\47\46quot;http://myweb2.search.yahoo.com/myresults/bookmarklet?u\75\46quot; + data:post.url + \
46quot;\46amp;\75\46quot; + data:post.title\47 expr:onmouseout\75\47\46quot;javascript:showsbtext(\\\46quot;sbtxt\46quot; +

data:post.id + \46quot;\\\46quot;,0);\46quot;\47 expr:onmouseover\75\47\46quot;javascript:showsbtext(\\\46quot;sbtxt\46quot; +


data:post.id + \46quot;\\\46quot;,4);\46quot;\47 rel\75\47nofollow\47 target\75\47_blank\47\76\74img alt\75\47Yahoo\47
src\75\47http://files.bloggerplugins.org/icon_sb_yah.gif\47/\76\74/a\76\n\74a
expr:href\75\47\46quot;http://www.furl.net/storeIt.jsp?u\75\46quot; + data:post.url + \46quot;\46amp;t\75\46quot; +
data:post.title\47 expr:onmouseout\75\47\46quot;javascript:showsbtext(\\\46quot;sbtxt\46quot; + data:post.id + \
46quot;\\\46quot;,0);\46quot;\47 expr:onmouseover\75\47\46quot;javascript:showsbtext(\\\46quot;sbtxt\46quot; + data:post.id + \
46quot;\\\46quot;,8);\46quot;\47 rel\75\47nofollow\47 target\75\47_blank\47\76\74img alt\75\47Furl\47
src\75\47http://files.bloggerplugins.org/icon_sb_fur.gif\47/\76\74/a\76\n\74a
expr:href\75\47\46quot;http://www.technorati.com/cosmos/search.html?url\75\46quot; + data:post.url\47
expr:onmouseout\75\47\46quot;javascript:showsbtext(\\\46quot;sbtxt\46quot; + data:post.id + \46quot;\\\46quot;,0);\46quot;\47
expr:onmouseover\75\47\46quot;javascript:showsbtext(\\\46quot;sbtxt\46quot; + data:post.id + \46quot;\\\46quot;,9);\46quot;\47
rel\75\47nofollow\47 target\75\47_blank\47\76\74img alt\75\47Technorati\47
src\75\47http://files.bloggerplugins.org/icon_sb_tec.gif\47/\76\74/a\76\n\74a
expr:href\75\47\46quot;http://www.simpy.com/simpy/LinkAdd.do?href\75\46quot; + data:post.url + \
46quot;\46amp;title\75\46quot; + data:post.title\47 expr:onmouseout\75\47\46quot;javascript:showsbtext(\\\46quot;sbtxt\46quot;
+ data:post.id + \46quot;\\\46quot;,0);\46quot;\47 expr:onmouseover\75\47\46quot;javascript:showsbtext(\\\46quot;sbtxt\46quot;
+ data:post.id + \46quot;\\\46quot;,10);\46quot;\47 rel\75\47nofollow\47 target\75\47_blank\47\76\74img alt\75\47Simpy\47
src\75\47http://files.bloggerplugins.org/icon_sb_sim.gif\47/\76\74/a\76\n\74a
expr:href\75\47\46quot;http://www.spurl.net/spurl.php?url\75\46quot; + data:post.url + \46quot;\46amp;title\75\46quot; +
data:post.title\47 expr:onmouseout\75\47\46quot;javascript:showsbtext(\\\46quot;sbtxt\46quot; + data:post.id + \
46quot;\\\46quot;,0);\46quot;\47 expr:onmouseover\75\47\46quot;javascript:showsbtext(\\\46quot;sbtxt\46quot; + data:post.id + \
46quot;\\\46quot;,11);\46quot;\47 rel\75\47nofollow\47 target\75\47_blank\47\76\74img alt\75\47Spurl\47
src\75\47http://files.bloggerplugins.org/icon_sb_spu.gif\47/\76\74/a\76\n\74a expr:href\75\47\46quot;http://reddit.com/submit?
url\75\46quot; + data:post.url + \46quot;\46amp;title\75\46quot; + data:post.title\47
expr:onmouseout\75\47\46quot;javascript:showsbtext(\\\46quot;sbtxt\46quot; + data:post.id + \46quot;\\\46quot;,0);\46quot;\47
expr:onmouseover\75\47\46quot;javascript:showsbtext(\\\46quot;sbtxt\46quot; + data:post.id + \46quot;\\\46quot;,17);\46quot;\47
rel\75\47nofollow\47 target\75\47_blank\47\76\74img alt\75\47Reddit\47
src\75\47http://files.bloggerplugins.org/icon_sb_red.gif\47/\76\74/a\76\n\74a
expr:href\75\47\46quot;http://www.google.com/bookmarks/mark?op\75add\46amp;bkmk\75\46quot; + data:post.url + \
46quot;\46amp;title\75\46quot;+data:post.title\47 expr:onmouseout\75\47\46quot;javascript:showsbtext(\\\46quot;sbtxt\46quot; +
data:post.id + \46quot;\\\46quot;,0);\46quot;\47 expr:onmouseover\75\47\46quot;javascript:showsbtext(\\\46quot;sbtxt\46quot; +
data:post.id + \46quot;\\\46quot;,20);\46quot;\47 rel\75\47nofollow\47 target\75\47_blank\47\76\74img alt\75\47Google\47
src\75\47http://files.bloggerplugins.org/icon_sb_goo.gif\47/\76\74/a\76\n\74a
expr:href\75\47\46quot;http://tools.bloggerplugins.org/twitter.php?url\75\46quot; + data:post.url + \
46quot;\46amp;title\75\46quot;+data:post.title\47 expr:onmouseout\75\47\46quot;javascript:showsbtext(\\\46quot;sbtxt\46quot; +
data:post.id + \46quot;\\\46quot;,0);\46quot;\47 expr:onmouseover\75\47\46quot;javascript:showsbtext(\\\46quot;sbtxt\46quot; +
data:post.id + \46quot;\\\46quot;,21);\46quot;\47 rel\75\47nofollow\47 target\75\47_blank\47\76\74img alt\75\47Twitter\47
src\75\47http://files.bloggerplugins.org/icon_sb_twitter.png\47/\76\74/a\76\n\74/td\76\n\74/tr\76\n\74/table\76\74br/\76\n\74/span\
76\n\74/div\76\n\74/div\076'}, 'postQuickEdit': {'varName': 'post', 'template': '\74b:if cond\75\47data:post.editUrl\47\76\n\74span
expr:class\75\47\46quot;item-control \46quot; + data:post.adminClass\47\76\n\74a expr:href\75\47data:post.editUrl\47
expr:title\75\47data:top.editPostMsg\47\76\n\74img alt\75\47\47 class\75\47icon-action\47 height\75\04718\47
src\75\47http://www.blogger.com/img/icon18_edit_allbkg.gif\47 width\75\04718\47/\76\n\74/a\76\n\74/span\76\n\74/b:if\076'},
'commentDeleteIcon': {'varName': 'comment', 'template': '\74span expr:class\75\47\46quot;item-control \46quot; +
data:comment.adminClass\47\76\n\74a expr:href\75\47data:comment.deleteUrl\47
expr:title\75\47data:top.deleteCommentMsg\47\76\n\74img
src\75\47http://www.blogger.com/img/icon_delete13.gif\47/\76\n\74/a\76\n\74/span\076'}, 'backlinkDeleteIcon': {'varName':
'backlink', 'template': '\74span expr:class\75\47\46quot;item-control \46quot; + data:backlink.adminClass\47\76\n\74a
expr:href\75\47data:backlink.deleteUrl\47 expr:title\75\47data:top.deleteBacklinkMsg\47\76\n\74img
src\75\47http://www.blogger.com/img/icon_delete13.gif\47/\76\n\74/a\76\n\74/span\076'}, 'comments': {'varName': 'post',
'template': '\74div class\75\47comments\47 id\75\47comments\47\76\n\74a name\75\47comments\47\76\74/a\76\n\74b:if
cond\75\47data:post.allowComments\47\76\n\74h4\76\n\74b:if cond\75\47data:post.numComments \75\75 1\47\76\n
1\
74data:commentLabel\76\74/data:commentLabel\76:\n
\
74b:else\76\74/b:else\76\n\74data:post.numComments\76\74/data:post.numComments\76\n\74data:commentLabelPlural\76\74/
data:commentLabelPlural\76:\n
\74/b:if\76\n\74/h4\76\n\74b:if
cond\75\47data:post.commentPagingRequired\47\76\n\74span class\75\47paging-control-container\47\76\n\74a
expr:class\75\47data:post.oldLinkClass\47
expr:href\75\47data:post.oldestLinkUrl\47\76\74data:post.oldestLinkText\76\74/data:post.oldestLinkText\76\74/a\76\n
\
46#160;\n
\74a expr:class\75\47data:post.oldLinkClass\47
expr:href\75\47data:post.olderLinkUrl\47\76\74data:post.olderLinkText\76\74/data:post.olderLinkText\76\74/a\76\n
\
46#160;\n
\74data:post.commentRangeText\76\74/data:post.commentRangeText\76\n
\46#160;\n
\74a
expr:class\75\47data:post.newLinkClass\47
expr:href\75\47data:post.newerLinkUrl\47\76\74data:post.newerLinkText\76\74/data:post.newerLinkText\76\74/a\76\n
\
46#160;\n
\74a expr:class\75\47data:post.newLinkClass\47
expr:href\75\47data:post.newestLinkUrl\47\76\74data:post.newestLinkText\76\74/data:post.newestLinkText\76\74/a\76\n\74/spa
n\76\n\74/b:if\76\n\74dl id\75\47comments-block\47\76\n\74b:loop values\75\47data:post.comments\47
var\75\47comment\47\76\n\74dt expr:class\75\47\46quot;comment-author \46quot; + data:comment.authorClass\47
expr:id\75\47data:comment.anchorName\47\76\n\74a expr:name\75\47data:comment.anchorName\47\76\74/a\76\n\74b:if
cond\75\47data:comment.authorUrl\47\76\n\74a expr:href\75\47data:comment.authorUrl\47
rel\75\47nofollow\47\76\74data:comment.author\76\74/data:comment.author\76\74/a\76\n\74b:else\76\74/b:else\76\n\74data:co
mment.author\76\74/data:comment.author\76\n\74/b:if\76\n\74data:commentPostedByMsg\76\74/data:commentPostedByMsg\7
6\n\74/dt\76\n\74dd class\75\47comment-body\47\76\n\74b:if cond\75\47data:comment.isDeleted\47\76\n\74span
class\75\47deletedcomment\47\76\74data:comment.body\76\74/data:comment.body\76\74/span\76\n\74b:else\76\74/b:else\76\n\74p\76\74data:co
mment.body\76\74/data:comment.body\76\74/p\76\n\74/b:if\76\n\74/dd\76\n\74dd class\75\47comment-footer\47\76\n\74span
class\75\47comment-timestamp\47\76\n\74a expr:href\75\47data:comment.url\47 title\75\47comment

permalink\47\76\n\74data:comment.timestamp\76\74/data:comment.timestamp\76\n\74/a\76\n\74b:include
data\75\47comment\47
name\75\47commentDeleteIcon\47\76\74/b:include\76\n\74/span\76\n\74/dd\76\n\74/b:loop\76\n\74/dl\76\n\74b:if
cond\75\47data:post.commentPagingRequired\47\76\n\74span class\75\47paging-control-container\47\76\n\74a
expr:class\75\47data:post.oldLinkClass\47
expr:href\75\47data:post.oldestLinkUrl\47\76\n\74data:post.oldestLinkText\76\74/data:post.oldestLinkText\76\n\74/a\76\n\74a
expr:class\75\47data:post.oldLinkClass\47
expr:href\75\47data:post.olderLinkUrl\47\76\n\74data:post.olderLinkText\76\74/data:post.olderLinkText\76\n\74/a\76\n
\
46#160;\n
\74data:post.commentRangeText\76\74/data:post.commentRangeText\76\n
\46#160;\n
\74a
expr:class\75\47data:post.newLinkClass\47
expr:href\75\47data:post.newerLinkUrl\47\76\n\74data:post.newerLinkText\76\74/data:post.newerLinkText\76\n\74/a\76\n\74a
expr:class\75\47data:post.newLinkClass\47
expr:href\75\47data:post.newestLinkUrl\47\76\n\74data:post.newestLinkText\76\74/data:post.newestLinkText\76\n\74/a\76\n\74/
span\76\n\74/b:if\76\n\74p class\75\47comment-footer\47\76\n\74b:if
cond\75\47data:post.embedCommentForm\47\76\n\74b:include data\75\47post\47 name\75\47commentform\47\76\74/b:include\76\n\74b:else\76\74/b:else\76\n\74b:if cond\75\47data:post.allowComments\47\76\n\74a
expr:href\75\47data:post.addCommentUrl\47
expr:onclick\75\47data:post.addCommentOnclick\47\76\74data:postCommentMsg\76\74/data:postCommentMsg\76\74/a\76\n\7
4/b:if\76\n\74/b:if\76\n\74/p\76\n\74/b:if\76\n\74div id\75\47backlinks-container\47\76\n\74div expr:id\75\47data:widget.instanceId
+ \46quot;_backlinks-container\46quot;\47\76\n\74b:if cond\75\47data:post.showBacklinks\47\76\n\74b:include
data\75\47post\47 name\75\47backlinks\47\76\74/b:include\76\n\74/b:if\76\n\74/div\76\n\74/div\76\n\74/div\076'}, 'commentform': {'varName': 'post', 'template': '\74div class\75\47comment-form\47\76\n\74a name\75\47commentform\47\76\74/a\76\n\74h4 id\75\47comment-postmessage\47\76\74data:postCommentMsg\76\74/data:postCommentMsg\76\74/h4\76\n\74p\76\74data:blogCommentMessage\7
6\74/data:blogCommentMessage\76\74/p\76\n\74data:blogTeamBlogMessage\76\74/data:blogTeamBlogMessage\76\n\74a
expr:href\75\47data:post.commentFormIframeSrc\47 id\75\47comment-editor-src\47\76\74/a\76\n\74iframe
allowtransparency\75\47true\47 class\75\47blogger-iframe-colorize blogger-comment-from-post\47 frameborder\75\0470\47
height\75\047410\47 id\75\47comment-editor\47 name\75\47comment-editor\47 src\75\47\47
width\75\047100%\47\76\74/iframe\76\n\74data:post.friendConnectJs\76\74/data:post.friendConnectJs\76\n\74data:post.cmtfpIf
rame\76\74/data:post.cmtfpIframe\76\n\74script type\75\47text/javascript\47\76\n
BLOG_CMT_createIframe(\46#39;\74data:post.appRpcRelayPath\76\74/data:post.appRpcRelayPath\76\46#39;, \
46#39;\74data:post.communityId\76\74/data:post.communityId\76\46#39;);\n \74/script\76\n\74/div\076'}, 'backlinks':
{'varName': 'post', 'template': '\74a
name\75\47links\47\76\74/a\76\74h4\76\74data:post.backlinksLabel\76\74/data:post.backlinksLabel\76\74/h4\76\n\74b:if
cond\75\47data:post.numBacklinks !\75 0\47\76\n\74dl class\75\47comments-block\47 id\75\47commentsblock\47\76\n\74b:loop values\75\47data:post.backlinks\47 var\75\47backlink\47\76\n\74div class\75\47collapsed-backlink
backlink-control\47\76\n\74dt class\75\47comment-title\47\76\n\74span class\75\47backlink-togglezippy\47\76\46#160;\74/span\76\n\74a expr:href\75\47data:backlink.url\47
rel\75\47nofollow\47\76\74data:backlink.title\76\74/data:backlink.title\76\74/a\76\n\74b:include data\75\47backlink\47
name\75\47backlinkDeleteIcon\47\76\74/b:include\76\n\74/dt\76\n\74dd class\75\47comment-body
collapseable\47\76\n\74data:backlink.snippet\76\74/data:backlink.snippet\76\n\74/dd\76\n\74dd class\75\47comment-footer
collapseable\47\76\n\74span class\75\47commentauthor\47\76\74data:post.authorLabel\76\74/data:post.authorLabel\76\n\74data:backlink.author\76\74/data:backlink.author\76\7
4/span\76\n\74span class\75\47commenttimestamp\47\76\74data:post.timestampLabel\76\74/data:post.timestampLabel\76\n\74data:backlink.timestamp\76\74/data:back
link.timestamp\76\74/span\76\n\74/dd\76\n\74/div\76\n\74/b:loop\76\n\74/dl\76\n\74/b:if\76\n\74p class\75\47commentfooter\47\76\n\74a class\75\47comment-link\47 expr:href\75\47data:post.createLinkUrl\47 expr:id\75\47data:widget.instanceId
+ \46quot;_backlinks-create-link\46quot;\47
target\75\47_blank\47\76\74data:post.createLinkLabel\76\74/data:post.createLinkLabel\76\74/a\76\n\74/p\076'}, 'feedLinks':
{'varName': '', 'template': '\74b:if cond\75\47data:blog.pageType !\75 \46quot;item\46quot;\47\76\n\74b:if
cond\75\47data:feedLinks\47\76\n\74div class\75\47blog-feeds\47\76\n\74b:include data\75\47feedLinks\47
name\75\47feedLinksBody\47\76\74/b:include\76\n\74/div\76\n\74/b:if\76\n\74b:else\76\74/b:else\76\n\74div class\75\47postfeeds\47\76\n\74b:loop values\75\47data:posts\47 var\75\47post\47\76\n\74b:if
cond\75\47data:post.allowComments\47\76\n\74b:if cond\75\47data:post.feedLinks\47\76\n\74b:include
data\75\47post.feedLinks\47
name\75\47feedLinksBody\47\76\74/b:include\76\n\74/b:if\76\n\74/b:if\76\n\74/b:loop\76\n\74/div\76\n\74/b:if\076'},
'feedLinksBody': {'varName': 'links', 'template': '\74div class\75\47feedlinks\47\76\n\74data:feedLinksMsg\76\74/data:feedLinksMsg\76\n\74b:loop values\75\47data:links\47 var\75\47f\47\76\n\74a
class\75\47feed-link\47 expr:href\75\47data:f.url\47 expr:type\75\47data:f.mimeType\47
target\75\47_blank\47\76\74data:f.name\76\74/data:f.name\76
(\74data:f.feedType\76\74/data:f.feedType\76)\74/a\76\n\74/b:loop\76\n\74/div\076'}, 'status-message': {'varName': '', 'template':
'\74b:if cond\75\47data:navMessage\47\76\n\74div class\75\47status-msg-wrap\47\76\n\74div class\75\47status-msgbody\47\76\n\74data:navMessage\76\74/data:navMessage\76\n\74/div\76\n\74div class\75\47status-msg-border\47\76\n\74div
class\75\47status-msg-bg\47\76\n\74div class\75\47status-msghidden\47\76\74data:navMessage\76\74/data:navMessage\76\74/div\76\n\74/div\76\n\74/div\76\n\74/div\76\n\74div
style\75\47clear: both;\47\76\74/div\76\n\74/b:if\076'}}, document.getElementById('Blog1'), {}, 'displayModeFull'));

_WidgetManager._RegisterWidget('_BlogArchiveView', new _WidgetInfo('BlogArchive1', 'main',{'main': {'varName': '', 'template':


'\74b:if cond\75\47data:title\47\76\n\74h2\76\74data:title\76\74/data:title\76\74/h2\76\n\74/b:if\76\n\74div class\75\47widgetcontent\47\76\n\74div id\75\47ArchiveList\47\76\n\74div expr:id\75\47data:widget.instanceId + \
46quot;_ArchiveList\46quot;\47\76\n\74b:if cond\75\47data:style \75\75 \46quot;HIERARCHY\46quot;\47\76\n\74b:include
data\75\47data\47 name\75\47interval\47\76\74/b:include\76\n\74/b:if\76\n\74b:if cond\75\47data:style \75\75 \
46quot;FLAT\46quot;\47\76\n\74b:include data\75\47data\47 name\75\47flat\47\76\74/b:include\76\n\74/b:if\76\n\74b:if
cond\75\47data:style \75\75 \46quot;MENU\46quot;\47\76\n\74b:include data\75\47data\47

name\75\47menu\47\76\74/b:include\76\n\74/b:if\76\n\74/div\76\n\74/div\76\n\74b:include
name\75\47quickedit\47\76\74/b:include\76\n\74/div\076'}, 'flat': {'varName': 'data', 'template': '\74ul\76\n\74b:loop
values\75\47data:data\47 var\75\47i\47\76\n\74li class\75\47archivedate\47\76\n\74a
expr:href\75\47data:i.url\47\76\74data:i.name\76\74/data:i.name\76\74/a\76 (\74data:i.post-count\76\74/data:i.post-count\76)\n
\74/li\76\n\74/b:loop\76\n\74/ul\076'}, 'menu': {'varName': 'data', 'template': '\74select expr:id\75\47data:widget.instanceId + \
46quot;_ArchiveMenu\46quot;\47\76\n\74option value\75\47\47\76\74data:title\76\74/data:title\76\74/option\76\n\74b:loop
values\75\47data:data\47 var\75\47i\47\76\n\74option expr:value\75\47data:i.url\47\76\74data:i.name\76\74/data:i.name\76
(\74data:i.post-count\76\74/data:i.post-count\76)\74/option\76\n\74/b:loop\76\n\74/select\076'}, 'interval': {'varName':
'intervalData', 'template': '\74b:loop values\75\47data:intervalData\47 var\75\47i\47\76\n\74ul\76\n\74li
expr:class\75\47\46quot;archivedate \46quot; + data:i.expclass\47\76\n\74b:include data\75\47i\47
name\75\47toggle\47\76\74/b:include\76\n\74a class\75\47post-count-link\47
expr:href\75\47data:i.url\47\76\74data:i.name\76\74/data:i.name\76\74/a\76\n\74span class\75\47post-count\47
dir\75\47ltr\47\76(\74data:i.post-count\76\74/data:i.post-count\76)\74/span\76\n\74b:if cond\75\47data:i.data\47\76\n\74b:include
data\75\47i.data\47 name\75\47interval\47\76\74/b:include\76\n\74/b:if\76\n\74b:if cond\75\47data:i.posts\47\76\n\74b:include
data\75\47i.posts\47 name\75\47posts\47\76\74/b:include\76\n\74/b:if\76\n\74/li\76\n\74/ul\76\n\74/b:loop\076'}, 'toggle':
{'varName': 'interval', 'template': '\74b:if cond\75\47data:interval.toggleId\47\76\n\74b:if cond\75\47data:interval.expclass \75\75 \
46quot;expanded\46quot;\47\76\n\74a class\75\47toggle\47 href\75\47javascript:void(0)\47\76\n\74span class\75\47zippy
toggle-open\47\76\46#9660;\46#160;\74/span\76\n\74/a\76\n\74b:else\76\74/b:else\76\n\74a class\75\47toggle\47
href\75\47javascript:void(0)\47\76\n\74span class\75\47zippy\47\76\n\74b:if cond\75\47data:blog.languageDirection \75\75 \
46quot;rtl\46quot;\47\76\n
\46#9668;\46#160;\n
\74b:else\76\74/b:else\76\n
\46#9658;\46#160;\n
\
74/b:if\76\n\74/span\76\n\74/a\76\n\74/b:if\76\n\74/b:if\076'}, 'posts': {'varName': 'posts', 'template': '\74ul
class\75\47posts\47\76\n\74b:loop values\75\47data:posts\47 var\75\47i\47\76\n\74li\76\74a
expr:href\75\47data:i.url\47\76\74data:i.title\76\74/data:i.title\76\74/a\76\74/li\76\n\74/b:loop\76\n\74/ul\076'}},
document.getElementById('BlogArchive1'), {'languageDirection': 'ltr'}, 'displayModeFull'));

_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML7', 'main',{'main': {'varName': '', 'template': '\74b:if


cond\75\47data:title !\75 \46quot;\46quot;\47\76\n\74h2
class\75\47title\47\76\74data:title\76\74/data:title\76\74/h2\76\n\74/b:if\76\n\74div class\75\47widgetcontent\47\76\n\74data:content\76\74/data:content\76\n\74/div\76\n\74b:include name\75\47quickedit\47\76\74/b:include\076'}},
document.getElementById('HTML7'), {}, 'displayModeFull'));

Вам также может понравиться