/*
* Schnee-Script
* @author Oliver Schlöbe <scripts@schloebe.de>
* @example http://www.schloebe.de/scriptdemos/schloebe_snow/snowtest.html
* @link http://www.schloebe.de/scripts/schnee-script/
* @since 111112
*/
var schloebesnow = {
no: 15, // Anzahl der Schneeflocken
speed: 20, // "Schnei-Geschwindigkeit"; je kleiner die Zahl, um so schneller fallen die Flocken
snowflake: "http://www.schloebe.de/wp-content/themes/schloebe_de/images/snow/snow.gif", // Bild der Schneeflocke, beliebig
/*********************************/
/** Ab hier nichts mehr ändern! **/
/*********************************/
ns4up: (navigator.appName=="Netscape" && navigator.appVersion.charAt(0)=="4") ? 1 : 0, // Browser Tester
ie4up: (document.all) ? 1 : 0,
ns6up: (document.getElementById&&!document.all) ? 1 : 0,
i: 0,
dx: new Array(),
xp: new Array(),
yp: new Array(),
am: new Array(),
stx: new Array(),
sty: new Array(),
doc_width: 800,
doc_height: 800,
let_it_snow: function() {
if( this.ns4up || this.ns6up ) { // Bildschirm-Auflösung holen, Netscape-Funktion
this.doc_width = self.innerWidth;
this.doc_height = self.innerHeight;
} else if( this.ie4up ) { // Bildschirm-Auflösung holen, Internet Explorer-Funktion
this.doc_width = document.body.clientWidth;
this.doc_height = document.body.clientHeight;
}
this.doc_height = (this.doc_height==0) ? document.documentElement.clientHeight : this.doc_height;
for( this.i = 0; this.i < this.no; ++ this.i ) {
this.dx[this.i] = 0; // Koordinaten-Variable setzen
this.xp[this.i] = Math.random()*(this.doc_width-50); // Position-Variable setzen
this.yp[this.i] = Math.random()*this.doc_height;
this.am[this.i] = Math.random()*20; // Amplituden-Variable setzten
this.stx[this.i] = 0.02 + Math.random()/10; // Variable für Schrittweite setzen
this.sty[this.i] = 0.7 + Math.random(); // Variable für Schrittweite setzen
if( this.ns4up ) {
if (this.i == 0) {
document.write("<layer name=\"dot"+ this.i +"\" left=\"15\" ");
document.write("top=\"15\" visibility=\"show\"><img src=\"");
document.write(this.snowflake + "\" border=\"0\"></layer>");
} else {
document.write("<layer name=\"dot"+ this.i +"\" left=\"15\" ");
document.write("top=\"15\" visibility=\"show\"><img src=\"");
document.write(this.snowflake + "\" border=\"0\"></layer>");
}
} else if( this.ie4up || this.ns6up ) {
if (this.i == 0) {
document.write("<div id=\"dot"+ this.i +"\" style=\"position: ");
document.write("absolute; z-index: "+ this.i +"; visibility: ");
document.write("visible; top: 15px; left: 15px;\"><img src=\"");
document.write(this.snowflake + "\" border=\"0\"></div>");
} else {
document.write("<div id=\"dot"+ this.i +"\" style=\"position: ");
document.write("absolute; z-index: "+ this.i +"; visibility: ");
document.write("visible; top: 15px; left: 15px;\"><img src=\"");
document.write(this.snowflake + "\" border=\"0\"></div>");
}
}
}
if( this.ns4up ) {
this.snowNS();
} else if( this.ie4up ) {
this.snowIE();
}else if( this.ns6up ) {
this.snowNS6();
}
},
/*
* Haupt-Animations-Funktion für Netscape
*/
snowNS: function() {
for( this.i = 0; this.i < this.no; ++ this.i ) {
this.yp[this.i] += this.sty[this.i];
if( this.yp[this.i] > this.doc_height-50 ) {
this.xp[this.i] = Math.random()*(this.doc_width-this.am[this.i]-30);
this.yp[this.i] = 0;
this.stx[this.i] = 0.02 + Math.random()/10;
this.sty[this.i] = 0.7 + Math.random();
this.doc_width = self.innerWidth;
this.doc_height = self.innerHeight;
this.doc_height = (this.doc_height==0) ? document.documentElement.clientHeight : this.doc_height;
}
this.dx[this.i] += this.stx[this.i];
document.layers["dot"+this.i].top = this.yp[this.i];
document.layers["dot"+this.i].left = this.xp[this.i] + this.am[this.i]*Math.sin(this.dx[this.i]);
}
setTimeout("schloebesnow.snowNS()", this.speed);
},
/*
* Haupt-Animations-Funktion für Internet Explorer
*/
snowIE: function() {
for( this.i = 0; this.i < this.no; ++ this.i ) {
this.yp[this.i] += this.sty[this.i];
if( this.yp[this.i] > this.doc_height-50 ) {
this.xp[this.i] = Math.random()*(this.doc_width-this.am[this.i]-30);
this.yp[this.i] = 0;
this.stx[this.i] = 0.02 + Math.random()/10;
this.sty[this.i] = 0.7 + Math.random();
this.doc_width = document.body.clientWidth;
this.doc_height = document.body.clientHeight;
this.doc_height = (this.doc_height==0) ? document.documentElement.clientHeight : this.doc_height;
}
this.dx[this.i] += this.stx[this.i];
document.all["dot"+this.i].style.pixelTop = this.yp[this.i];
document.all["dot"+this.i].style.pixelLeft = this.xp[this.i] + this.am[this.i]*Math.sin(this.dx[this.i]);
}
setTimeout("schloebesnow.snowIE()", this.speed);
},
/*
* Haupt-Animations-Funktion für Netscape6 und Mozilla
*/
snowNS6: function() {
for( this.i = 0; this.i < this.no; ++ this.i ) {
this.yp[this.i] += this.sty[this.i];
if( this.yp[this.i] > this.doc_height-50 ) {
this.xp[this.i] = Math.random()*(this.doc_width-this.am[this.i]-30);
this.yp[this.i] = 0;
this.stx[this.i] = 0.02 + Math.random()/10;
this.sty[this.i] = 0.7 + Math.random();
this.doc_width = self.innerWidth;
this.doc_height = self.innerHeight;
this.doc_height = (this.doc_height==0) ? document.documentElement.clientHeight : this.doc_height;
}
this.dx[this.i] += this.stx[this.i];
document.getElementById("dot"+this.i).style.top = this.yp[this.i]+"px";
document.getElementById("dot"+this.i).style.left = this.xp[this.i] + this.am[this.i]*Math.sin(this.dx[this.i])+"px";
}
setTimeout("schloebesnow.snowNS6()", this.speed);
}
}
schloebesnow.let_it_snow();
|
»
Bewerbung »
Replica Basketball Jerseys From China
#1
Replica Basketball Jerseys From China in Bewerbung
26.12.2019 07:41
von
acdbke
• | 171 Beiträge
Free News Articles Home Management Changes Mortgage Lending Technology Leader Del Mar DataTrac Names John Aslanian Vice President of Sales Mortgage Lending Technology Leader Del Mar DataTrac Names John Aslanian Vice President of Sales Author: Del Mar DataTrac Dateline: San Diego Cheap Rick Leonard Jersey , California (SAN DIEGO, Calif.) | Wed, 13 Apr 2011
freeNewsArticles Story Summary: “Del Mar DataTrac(R) (DMD), the leading provider of affordable mortgage lending automation solutions, and an industry pioneer in business intelligence, paperless lending Cheap Tre'Quan Smith Jersey , and loan process workflow tools, has named John Aslanian vice president of sales. Aslanian has been DMD's director of sales since 2007.”
A R T I C L E:
Del Mar DataTrac® (DMD), the leading provider of affordable mortgage lending automation solutions, and an industry pioneer in business intelligence, paperless lending, and loan process workflow tools Cheap Marcus Davenport Jersey , has named John Aslanian vice president of sales. Aslanian has been DMD's director of sales since 2007.
Aslanian originally joined DMD as a sales professional in 2001, and has worked with community bank mortgage lenders and independent mortgage bankers to streamline their business operations and improve their loan quality by applying automated technology solutions. A seasoned technology sales expert, Aslanian has held several other sales positions, including working with a leading manufacturing ERP software provider, prior to joining DMD,
"John has an uncanny ability to identify and relate to mortgage lenders' challenges and vision Cheap Taysom Hill Jersey ," said DMD president Rob Katz. "The DMD culture favors and rewards professionals like John, who really care about our clients, and strive to solve problems through creativity and integrity.
"Mortgage lenders are at a crossroads in 2011, and for those that make the right choices the future is full of opportunity," said DMD vice president of sales John Aslanian. "Perhaps the single most important choice a mortgage lender can make today is to trade in their legacy 20th century technology for solutions developed to perform well in more robust environments and with greater controls."
"Outdated technology is the elephant in the room for mortgage lenders of every shape and size," Aslanian said. "My job is to help them imagine a world outside their comfort zone Cheap Chauncey Gardner-Johnson Jersey , and to show them how DMD's superior end-to-end suite of loan origination solutions (LOS) from point-of-sale (POS) through the back office, including electronic document management, can help them succeed."
About Del Mar DataTrac:
Marking its 20th business anniversary in 2011 and with more than $2 trillion in mortgage loans funded through DataTrac since its inception, Del Mar DataTrac (DMD) is the leading provider of affordable loan automation solutions for mortgage lenders, banks, and credit unions.
DMD offers a scalable workflow platform that enables lending best practices by leveraging DataTrac as the back-office hub along with a sophisticated point-of-sale system Cheap Erik McCoy Jersey , a web-based originator portal and commission engine, and a management dashboard - all in a paperless environment.
The DataTrac Suite is designed by mortgage lenders for mortgage lenders who strive to deliver extraordinary customer service, increase production and profitability, reduce risk, and streamline overall efficiency. For more information, visit www.dmdinc .
###
Copyright © 2011 by Del Mar DataTrac and Send2Press® Newswire Wholesale New Orleans Saints Jerseys , a service of Neotrope® - all rights reserved. Information believed accurate but not guaranteed. Sourced on: freeNewsArticles.
• Web Image (72dpi): https:www.send2pressmediaboom11-0413-aslanian_72dpi.jpg
• Media Contact Information: https:www.send2pressmediadrome2011-04-0413-011.txt
• Story Title: Mortgage Lending Technology Leader Del Mar DataTrac Names John Aslanian Vice President of Sales • REFERENCE KEYWORDSTERMS: John Aslanian, San Diego, California, DMD DataTrac Suite, Management Changes, Finance Wholesale Saints Jerseys , Computing, SAN DIEGO, Calif..
IMPORTANT NOTICE: some content which is considered "old" or "archival" may reference an event which has already occurred; some content possibly considered "advertorial" may also reference a promotion or time-limitedsensitive offering, and in all of these instances certain material may no longer be valid. For notably stale content, you should directly contact the companyperson mentioned in the text (Del Mar DataTrac); this site cannot assist you with information about productsservices mentioned in the news article, nor handle any complaints or other issues related to any personcompany mentioned or promoted in the above text. Information believed accurate but not guaranteed as of original date of story [Wed Cheap New Orleans Saints Jerseys , 13 Apr 2011 23:50:00 GMT].
USE THIS CONTENT FOR FREE: To use this content in your newspaper, broadcast outlet, news portal, blogezine or similar, free of cost, CLICK HERE to learn how. Find and view different kinds that you can use Posted On : Oct-21-2011 | seen (61) times | Article Word Count : 518 |
. Replica Hockey Jerseys China Replica Jerseys Sale Replica Baseball Jerseys Online Fake Replica Football Jerseys Cheap Replica Jerseys Replica College Jerseys Online Replica Basketball Jerseys From China Cheap Replica Jerseys From China Cheap Replica Jerseys Online Cheap Fake Soccer Jerseys Sale
Besucher
0 Mitglieder und 25 Gäste sind Online
Wir begrüßen unser neuestes Mitglied: bill74
|
Forum Statistiken
Das Forum hat 949
Themen
und
1737
Beiträge.
Heute waren 0 Mitglieder Online:
|
|