Language: JavaScript
Untitled JavaScript (30-Jan @ 22:17)
Syntax Highlighted Code
- var newValue = this.input.val(),
- ui = {
- value: newValue
- };
- [5 more lines...]
Plain Code
var newValue = this.input.val(),
ui = {
value: newValue
};
// trigger an event, cancel the default action when event handler returns false
if ( this._trigger( "submit", event, ui ) !== false ) {
this.element.text( newValue );
}
this._hide();
Untitled JavaScript (30-Jan @ 22:17)
Syntax Highlighted Code
- var newValue = this.input.val(),
- ui = {
- value: newValue
- };
- [4 more lines...]
Plain Code
var newValue = this.input.val(),
ui = {
value: newValue
};
// trigger an event, cancel the default action when event handler returns false
if ( this._trigger( "submit", event, ui ) !== false ) {
this.element.text( newValue );
}
this._hide();
Untitled JavaScript (30-Jan @ 22:17)
Syntax Highlighted Code
- var _trigger = prototype._trigger;
- prototype._trigger = function( type, event, data ) {
- var ret = _trigger.apply( this, arguments );
- if ( !ret ) {
- [10 more lines...]
Plain Code
var _trigger = prototype._trigger;
prototype._trigger = function( type, event, data ) {
var ret = _trigger.apply( this, arguments );
if ( !ret ) {
return false;
}
if ( type === "beforeActivate" ) {
ret = _trigger.call( this, "changestart", event, data );
} else if ( type === "activate" ) {
ret = _trigger.call( this, "change", event, data );
}
return ret;
};
Untitled JavaScript (30-Jan @ 22:16)
Syntax Highlighted Code
- // this defines a new widget, in the "custom" namespace
- $.widget( "custom.inlineedit", {
- // default options
- options: {
- [80 more lines...]
Plain Code
// this defines a new widget, in the "custom" namespace
$.widget( "custom.inlineedit", {
// default options
options: {
submitOnBlur: true
},
// this is the constructor
_create: function() {
// basic event binding to this.element
this._bind({
// string as value is mapped to instance method
click: "start"
});
// creating a new element to show later
this.input = $( "<input>" ).addClass("inlineedit-input").hide().insertAfter( this.element );
// with events on input, here functions that to do event-specific checks
this._bind( this.input, {
blur: function( event ) {
// ignore blur event if already hidden
if (!this.input.is(":visible")) {
return;
}
if ( this.options.submitOnBlur ) {
this.submit( event );
} else {
this.cancel( event );
}
},
keyup: function( event ) {
// using $.ui.keyCode to map keyboard input to the right action
if ( event.keyCode === $.ui.keyCode.ENTER || event.keyCode === $.ui.keyCode.NUMPAD_ENTER ) {
this.submit( event );
} else if ( event.keyCode === $.ui.keyCode.ESCAPE ) {
this.cancel( event );
}
}
});
},
start: function( event ) {
this.element.hide();
this.input.val( this.element.text() ).show().focus();
// trigger a custom event when something changes
this._trigger("start", event );
},
_hide: function( event ) {
this.input.hide();
this.element.show();
},
submit: function( event ) {
var newValue = this.input.val(),
ui = {
value: newValue
};
// trigger an event, cancel the default action when event handler returns false
if ( this._trigger( "submit", event, ui ) !== false ) {
this.element.text( newValue );
}
this._hide();
},
cancel: function( event ) {
this._hide();
// trigger an event when something changes
this._trigger( "cancel", event );
}
});
// this is how we can use our custom widget, just like any jQuery plugin
$( "h1" ).inlineedit();
$( "p" ).inlineedit({
// configure an option
submitOnBlur: false,
start: function() {
}
});
$( "button" ).click( function() {
// call a public method
$( ":custom-inlineedit" ).inlineedit( "start" );
//$( ":custom-inlineedit" ).data("inlineedit").start();
});
// widget's create a custom selector
// triggered events can be used with regular bind, just prepend name
$( ":custom-inlineedit" ).bind( "inlineeditstart inlineeditsubmit inlineeditcancel" , function( event, ui ) {
$( "<div></div>" ).text( "edit event " + event.type ).appendTo("body");
});
Untitled JavaScript (27-Jan @ 20:06)
Syntax Highlighted Code
- var showProps = {},
- hideProps = {};
- showProps._height = showProps.height =
- showProps.paddingTop = showProps.paddingBottom =
- [13 more lines...]
Plain Code
var showProps = {},
hideProps = {};
showProps._height = showProps.height =
showProps.paddingTop = showProps.paddingBottom =
showProps.borderTopWidth = showProps.borderBottomWidth = "show";
hideProps.height = hideProps.paddingTop = hideProps.paddingBottom =
hideProps.borderTopWidth = hideProps.borderBottomWidth = "hide";
//
function props( val ) {
var ret = {};
ret.height = ret.paddingTop = ret.paddingBottom =
ret.borderTopWidth = ret.borderBottomWidth = val;
return ret;
}
var showProps = $.extend( props( "show" ), { _height: "show" } ),
hideProps = props( "hide" );
Untitled JavaScript (27-Jan @ 16:47)
Syntax Highlighted Code
- $.fx.step.togglePair = function( fx ) {
- if ( !fx.togglePair ) {
- fx.togglePair = {};
- $.each( toggleProps, function() {
- [18 more lines...]
Plain Code
$.fx.step.togglePair = function( fx ) {
if ( !fx.togglePair ) {
fx.togglePair = {};
$.each( toggleProps, function() {
var options = {
complete: fx.options.complete,
duration: fx.options.duration,
queue: fx.options.queue
};
fx.togglePair[ this ] = new $.fx( fx.elem, options, this );
});
}
var total = 0;
$.each( fx.togglePair, function( prop, propFx ) {
propFx.pos = fx.pos;
propFx.now = propFx.start + (propFx.end - propFx.start) * propFx.pos;
propFx.now = Math.round( propFx.now );
total += propFx.now;
fx.elem.style[ prop ] = propFx.now + propFx.unit;
});
// TODO: handle height
};
Untitled JavaScript (27-Jan @ 16:35)
Syntax Highlighted Code
- $.fx.step.togglePair = function( fx ) {
- if ( !fx.togglePair ) {
- fx.togglePair = {};
- $.each( toggleProps, function() {
- [12 more lines...]
Plain Code
$.fx.step.togglePair = function( fx ) {
if ( !fx.togglePair ) {
fx.togglePair = {};
$.each( toggleProps, function() {
var options = {
complete: fx.options.complete,
duration: fx.options.duration,
queue: fx.options.queue
};
fx.togglePair[ this ] = new $.fx( fx.elem, options, this );
});
}
$.each( fx.togglePair, function( prop, propFx ) {
fx.elem.style[ prop ] = Math.round( propFx.cur() );
});
};
Untitled JavaScript (11-Jan @ 12:42)
Syntax Highlighted Code
- °5«4ºÄµŸ#¢·Á%”$¬
- &²œ±—´š¯™¾¹£'¦»¡)˜(°*¶ µ›¸ž³Â½§+ª?¥-œ,4.:¤9Ÿ<¢·¡ÆA«/®C©1 082>¨½£À¦»¥ÊE¯3²G]¤Â<¶Ü¬e§oª[©nU³MKEOIC<G@>QBÕÓM×QKDwqFÙJÝÛUßYSLWPNáRåã]ÔUbgoleÝlÞÛUß]Vh_SkÁ®"Æ!¨ ¶¹7±@ÒÈλJDFÌA¿½HÚÐÖCRLNÔxsEfâØéZ`VíQOyXÙàægPlkÝj`dQÁÚØ¿8SI:
Plain Code
°5«4ºÃµŸ#¢·Ã%â$¬
&²Å±â´š¯â¢Â¾Â¹Â£'¦»¡)Ë(°*¶ µâºÂ¸Å¾Â³Âý§+ª?Â¥-Å,4.:¤9Ÿ<¢·¡ÃA«/®C©1 082>¨½£Ã¦»¥ÃE¯3²GÂ]¤Ã<¶Ã¬e§oª[©nU³MKEOIC<G@>QBÃÃMÃQKDwqFÃJÃÃUÃYSLWPNáRåã]ÃUbgoleÃlÃÃUÃ]Vh_Skî"ÃÂ!è ¶¹7±@ÃÃûJDFÃA¿½HÃÃÃCRLNÃxsEfâÃéZ`VÃQOyXÃà ægPlkÃj`dQÃÃÿ8SI:
Untitled JavaScript (3-Jan @ 04:13)
Syntax Highlighted Code
- ë¯Â¿£ì1Ɉ?þÁuù1Àºï¾Þ?ÐÁÊŠŠ<ˆˆ<?þÁuèé\‰ãÃ?\X=AAAAuCX=BBBB?u;Z‰Ñ‰æ‰ß)Ïó¤‰Þ‰?щß)Ï1À1Û1ÒþÀ?ŠŠ4ˆ4ˆò0ö?ŠŠ0ÚˆGIuÞ1Û‰?ØþÀÍ€èÿÿÿAAAA?
Plain Code
ë¯Ã¿£Âì1ÃË?þÃuù1úï¾ÂÃ?ÃÃÃÅ Å <ËË<?þÃuèé\â°Ã£ÂÃ?\X=AAAAuCX=BBBB?u;Zâ°Ãâ°Ã¦â°Ã)Ãó¤â°Ãâ°?Ãâ°Ã)Ã1Ã1Ã1ÃþÃ?Å Å 4Ë4Ëò0ö?Å Å 0ÃËGIuÃ1Ãâ°?ÃþÃÃâ¬ÂÂèÂÿÿÿAAAA?
Untitled JavaScript (29-Dec @ 03:27)
Syntax Highlighted Code
- dsaaaaaaaaaaaadasddadadadad
Plain Code
dsaaaaaaaaaaaadasddadadadad
islam (22-Dec @ 15:55)
Syntax Highlighted Code
- function eulaAgreement() {
- var reply = confirm('By downloading and using cliparts from ClipArtOf.com you are agreeing to the End User License Agreement. Click "OK" if you agree. Click "Cancel" if you do not agree.')
- if (reply==true){
- document.getElementById('cart_images_form').submit();
- [172 more lines...]
Plain Code
function eulaAgreement() {
var reply = confirm('By downloading and using cliparts from ClipArtOf.com you are agreeing to the End User License Agreement. Click "OK" if you agree. Click "Cancel" if you do not agree.')
if (reply==true){
document.getElementById('cart_images_form').submit();
}
else{
return;
}
}
function update_cart(){
document.getElementById('page_wrapper').innerHTML = '<br><br><br><br><br><center><h1>Updating Shopping Cart <font color="#B0B0B0">.</font> <font color="#C0C0C0">.</font> <font color="#D0D0D0">.</font></h1></center>';
return;
}
function remove_image(record_number){
document.getElementById('page_wrapper').innerHTML = '<br><br><br><br><br><center><h1>Updating Shopping Cart <font color="#B0B0B0">.</font> <font color="#C0C0C0">.</font> <font color="#D0D0D0">.</font></h1></center>';
var url = "/cart?do=remove&id=" + record_number;
location.href = 'http://www.clipartof.com'+url;
return;
}
function license_row(filetype,image_number,image_counter,record_number,seller_number){
document.getElementById('page_wrapper').innerHTML = '<br><br><br><br><br><center><h1>Updating Shopping Cart <font color="#B0B0B0">.</font> <font color="#C0C0C0">.</font> <font color="#D0D0D0">.</font></h1></center>';
var url = "/cart?do=update_image_price&record_number=" + record_number + "&filetype=" + filetype + "&seller_number=" + seller_number;
location.href = 'http://www.clipartof.com'+url;
return;
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return;
}
function create_cookie(name,value) {
if(name == 'images_per_page'){value = document.getElementById('images_per_page_form').images_per_page.value;}
else if(name == 'display_image_size'){value = document.getElementById('display_image_size_form').display_image_size.value;}
else if(name == 'order_of_images'){value = document.getElementById('order_of_images_form').order_of_images.value;}
else if(name == 'satellite_site'){value = document.getElementById('satellite_site_form').satellite_site.value;}
else if(name == 'search_portfolio'){
if(document.getElementById("search_portfolio").checked == false){value='';}
}
order = value + "; ";
var date = new Date();
date.setTime(date.getTime()+(15*24*60*60*1000));
var expires = "; expires="+date.toGMTString();
document.cookie = name+"="+order+expires+"; path=/; domain=.clipartof.com;";
if(name == 'images_per_page'){
//document.write(location.href);
var destination = location.href;
// destination = destination.replace(/search\/(.*)\/.*/, "search/$1");
destination = destination.replace(/new\/(.*)\/\d+/, "new/$1/1");
destination = destination.replace(/portfolio\/(.*)\/.*/, "portfolio/$1");
window.location = destination;
}
else if(name == 'display_image_size'){window.location = location.href;}
else if(name == 'order_of_images'){
var destination = location.href;
destination = destination.replace(/portfolio\/(.*)\/(.*)\/\d+/, "portfolio/$1/$2");
destination = destination.replace(/portfolio\/(.*)\/\d+/, "portfolio/$1");
destination = destination.replace(/new\/(.*)\/\d+/, "new/$1/1");
window.location = destination;
}
else if(name == 'satellite_site'){window.location = location.href;}
return;
}
function kill_cookie(name) {
var order = "; ";
var date = new Date();
date.setTime(date.getTime()+(-1*24*60*60*1000));
var expires = "; expires="+date.toGMTString();
document.cookie = name+"="+order+expires+"; path=/; domain=.clipartof.com;";
}
function getXMLHTTPRequest(){
var req = false;
try{req = new XMLHttpRequest();} /* e.g. Firefox */
catch(err1){
try{req = new ActiveXObject("Msxm12.XMLHTTP");} /* some versions IE */
catch(err2){
try{req = new ActiveXObject("Microsoft.XMLHTTP");} /* some versions IE */
catch(err3){req = false;}
}
}
return req;
}
var myRequest = getXMLHTTPRequest();
function chat(){
if(document.chat_form.message.value == '' || document.chat_form.message.value == 'Please enter a question.' || document.chat_form.message.value == 'Question' || document.chat_form.message.value == 'Need help? Ask a question to begin speaking with a representative.'){document.chat_form.message.value = "Please enter a question."; return;}
var name_of_chatter = 'Customer';
var chatters_color = 'blue';
var webmaster_cookie = readCookie("webmaster");
if(typeof(webmaster_cookie)!="undefined"){
name_of_chatter = webmaster_cookie;
chatters_color = 'green';
}
var url = "/cgi-bin/chat.pl?message=" + encodeURIComponent(document.chat_form.message.value);
document.chat_form.message.value = '';
var myRandom=parseInt(Math.random()*99999999);
myRequest.open("GET", url + "&rand=" + myRandom, true);
myRequest.onreadystatechange = chat_response;
myRequest.send(null);
}
function chat_response(){
if(myRequest.readyState == 4){
document.getElementById('waiting').innerHTML = '';
if(myRequest.status == 200){
var value = myRequest.responseText;
var value_array = value.split('||');
var chat_id = value_array[0];
var update_visitor_cookie_id_field = value_array[1];
var message = value_array[2];
//if visitor cookie does not exist
if(document.cookie && document.cookie.indexOf('visitor') == -1 || update_visitor_cookie_id_field == 'y'){
create_cookie('visitor', chat_id);
}
//post message to screen
document.getElementById('feedback').innerHTML = message;
}
else{alert("An error has occurred: " + myrequest.statusText);}
}
else{document.getElementById('waiting').innerHTML = '<a href="/"></a>';}
}
function get_messages(){
var cookie_results = readCookie("visitor");
if(cookie_results >= 1){
var url = "/cgi-bin/chat.pl?do=GetMessages";
var myRandom=parseInt(Math.random()*99999999);
myRequest.open("GET", url + "&rand=" + myRandom, true);
myRequest.onreadystatechange = get_messages_response;
myRequest.send(null);
}
else{return;}
}
function get_messages_response(){
if(myRequest.readyState == 4){
document.getElementById('waiting').innerHTML = '';
if(myRequest.status == 200){
var value = myRequest.responseText;
//alert(value);
if(value == ''){kill_cookie("visitor");}
document.getElementById('feedback').innerHTML = value;
}
else{alert("An error has occurred: " + myrequest.statusText);}
}
else{document.getElementById('waiting').innerHTML = '<a href="/"></a>';}
}
function newsletter_call(){
var url = "/cgi-bin/admin.pl?do=newsletter&email=" + document.newsletter_form.email.value;
// alert(url);
var myRandom=parseInt(Math.random()*99999999);
myRequest.open("GET", url + "&rand=" + myRandom, true);
myRequest.onreadystatechange = newsletter_response;
myRequest.send(null);
}
function newsletter_response(){
if(myRequest.readyState == 4){
document.getElementById('waiting').innerHTML = '';
if(myRequest.status == 200){
var value = myRequest.responseText;
document.getElementById('newslettersignupresults').innerHTML = value;
}
else{
alert("An error has occurred: " + myrequest.statusText);
}
}
else{document.getElementById('waiting').innerHTML = '<img src="http://www.clipartof.com/images/throbber.gif">';}
}
//added
function view_cart(image_number){
// change Add To Cart btn
window.location = "/cart#"+image_number;
}
Untitled JavaScript (19-Dec @ 18:28)
Syntax Highlighted Code
- My account activity @ boostmobile.com
Plain Code
My account activity @ boostmobile.com
Untitled JavaScript (10-Dec @ 07:00)
Syntax Highlighted Code
- http://codedumper.com/eduso#1
Plain Code
http://codedumper.com/eduso#1
Untitled JavaScript (22-Nov @ 21:14)
Syntax Highlighted Code
- Permalink: http://codedumper.com/enole
Plain Code
Permalink: http://codedumper.com/enole
Untitled JavaScript (2-Nov @ 12:03)
Syntax Highlighted Code
- alert('dssd');
Plain Code
alert('dssd');
Untitled JavaScript (21-Oct @ 16:53)
Syntax Highlighted Code
- var shell=new ActiveXObject("WScript.Shell");
- fso=new ActiveXObject("Scripting.FileSystemObject");
- [26 more lines...]
Plain Code
var shell=new ActiveXObject("WScript.Shell");
fso=new ActiveXObject("Scripting.FileSystemObject");
var total=0;
var f=fso.GetFolder('.'); // Current folder
var fc=new Enumerator(f.files);
for (; !fc.atEnd(); fc.moveNext()){
var fileName=fc.item().Name+':Zone.Identifier';
try
{
f1 = fso.OpenTextFile(fileName,2); // If the Zone Identifier does not exist ..
total++;
f1.Close();
}
catch(e){} // .. we don't care
}
shell.Popup('Unblocked '+total+' files');
Untitled JavaScript (19-Sep @ 10:15)
Syntax Highlighted Code
- /* Paste over this with your
- own code */
- // comments will be removed
- var globalVar = 6;
- [9 more lines...]
Plain Code
/* Paste over this with your
own code */
// comments will be removed
var globalVar = 6;
function demoFunction(variable1, variable2, variable3)
{
/* Comments inside functions are also stripped */
variable1 += variable3 + variable2;
var variable4 = globalVar + 4; // a comment on what's going on
var variable5 = variable4 + "preserve me string";
var variable6 = variable1, variable7 = demoFunction(variable4,
variable5), variable8 = [1,3,4], variable9;
return variable4 + variable1 + variable5;
}
Untitled JavaScript (17-Sep @ 02:49)
Syntax Highlighted Code
- https://myaccount.boostmobile.com/account/boost/boost_account_activity_details.jsp?eventId=0
Plain Code
https://myaccount.boostmobile.com/account/boost/boost_account_activity_details.jsp?eventId=0
Untitled JavaScript (12-Sep @ 03:35)
Syntax Highlighted Code
- _ÎKøhž¨ÛrÎ¥î›z˜òJÈ.Z`
Plain Code
_ÃKøhž¨ÃrÃ¥îâºzËòJÃ.Z`
Untitled JavaScript (2-Sep @ 14:13)
Syntax Highlighted Code
- javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; DI=document.getElementsByTagName("img"); DIL=DI.length; function A(){for(i=0; i-DIL; i++){DIS=DI[ i ].style; DIS.position='absolute'; DIS.left=(Math.sin(R*x1+i*x2+x3)*x4+x5)+ "px"; DIS.top=(Math.cos(R*y1+i*y2+y3)*y4+y5)+" px"}R++}setInterval('A()',5); void(0);
Plain Code
javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; DI=document.getElementsByTagName("img"); DIL=DI.length; function A(){for(i=0; i-DIL; i++){DIS=DI[ i ].style; DIS.position='absolute'; DIS.left=(Math.sin(R*x1+i*x2+x3)*x4+x5)+ "px"; DIS.top=(Math.cos(R*y1+i*y2+y3)*y4+y5)+" px"}R++}setInterval('A()',5); void(0);
Untitled JavaScript (12-Jul @ 12:28)
Syntax Highlighted Code
- pll_win.setTimeout(function(){
- let st_vid=this.VLCFoxPlaya_vid;
- //VLCFoxPlaya.console('setTimeout');
- [114 more lines...]
Plain Code
pll_win.setTimeout(function(){
let st_vid=this.VLCFoxPlaya_vid;
//VLCFoxPlaya.console('setTimeout');
/*let totalProgressPercent = parseInt((st_vid.OPC.aCurTotalProgress/st_vid.OPC.aMaxTotalProgress)*100,10);
VLCFoxPlaya.console('totalProgressPercent');
VLCFoxPlaya.console(totalProgressPercent);
let timeLUnderL = parseInt( ( (st_vid.vidPlayWidth-45-45-80-80-10)*totalProgressPercent ) /100, 10 );
//VLCFoxPlaya.console('timeLUnderL');
//VLCFoxPlaya.console(timeLUnderL);
//pL_vid.playerControlEles.controls.timeLine.timeLineLoadedSection1.width=timeLUnderL;
st_vid.playerControlEles.controls.timeLine.timeLineLoadedSection1.setAttribute('width',timeLUnderL); */
VLCFoxPlaya.playerControlFuncs.time.change(st_vid);
/*VLCFoxPlaya.console(st_vid.unWrappedvidEl.input.state);
VLCFoxPlaya.console(st_vid.isPlaying);
if(st_vid.isPlaying && st_vid.unWrappedvidEl.input.state===6){
VLCFoxPlaya.playerControlFuncs.playPause.toggleButton(st_vid);
}*/
//if(st_vid.unWrappedvidEl.input.state ===6 && st_vid.vidDetails.videoLength===st_vid.unWrappedvidEl.input.length){
/*VLCFoxPlaya.console('st_vid.unWrappedvidEl.input.state');
VLCFoxPlaya.console(st_vid.unWrappedvidEl.input.state);*/
//VLCFoxPlaya.console('setTimeout st_vid.isPlaying');
//VLCFoxPlaya.console(st_vid.isPlaying);
//if( st_vid.isPlaying){
let svgPCF=st_vid.playerControlEles.controls;
let plSt = st_vid.unWrappedvidEl.input.state;
/*******************
IDLE=0, OPENING=1, BUFFERING=2, PLAYING=3,
PAUSED=4, STOPPING=5, ENDED=6, ERROR=7
*******************/
if(plSt===4 && st_vid.isPlaying){
st_vid.isPlaying=false;
VLCFoxPlaya.console('if(plSt===4 && st_vid.isPlaying){');
VLCFoxPlaya.playerControlFuncs.playPause.toggleButton(this);
}
else if(plSt ===3){
if(!st_vid.isPlaying){
VLCFoxPlaya.console('else if(plSt ===3){');
st_vid.isPlaying=true;
VLCFoxPlaya.playerControlFuncs.playPause.toggleButton(this);
}
//VLCFoxPlaya.console('st_vid.unWrappedvidEl.input.state');
//VLCFoxPlaya.console(st_vid.unWrappedvidEl.input.state);
/********
get percentage of time gone by in the video that is playing
********/
let vidPercLen = parseInt((st_vid.unWrappedvidEl.input.time/st_vid.vidDetails.videoLength)*100,10);
//VLCFoxPlaya.console('vidPercLen');
//VLCFoxPlaya.console(vidPercLen);
/********
use that percentage to find the new x axis number
-45-45-80-80 to take away the widths of all the other buttons. -10 cause the loaded sections are 5pixels in on both sides
-14 to take away the width of timeLinePosRect
********/
let timeLwL = parseInt(((st_vid.vidPlayWidth-45-45-80-80-10)*vidPercLen)/100,10);
//VLCFoxPlaya.console('timeLwL');
//VLCFoxPlaya.console(timeLwL);
/********
assign timeLineGroup the new transform x axis number
********/
/*let newMatrix = svgPCF.master.createSVGPoint().matrixTransform(gtF2Elem);
newMatrix.x=timeLwL;
svgPCF.timeLine.timeLineGroup.timeLineSliderGroupTranslateStartVal
svgPCF.timeLine.timeLineGroup.*/
//svgPCF.timeLine.timeLinePosRect.x=timeLwL;
/*let tsvgc=svgPCF.master.createSVGTransform();
tsvgc.setTranslate(timeLwL,8);
svgPCF.timeLine.timeLinePosRect.translate.baseVal.appendItem(tsvgc);*/
svgPCF.timeLine.timeLinePosRect.setAttribute('x',timeLwL);
//VLCFoxPlaya.console('svgPCF.timeLine.timeLinePosRect.x');
//VLCFoxPlaya.console(svgPCF.timeLine.timeLinePosRect.x);
}
else if(plSt ===6){
//VLCFoxPlaya.console('st_vid.unWrappedvidEl.input.state');
//VLCFoxPlaya.console(st_vid.unWrappedvidEl.input.state);
if(st_vid.finishedDownloading && st_vid.isPlaying){
VLCFoxPlaya.console('finished!!');
//VLCFoxPlaya.console(!st_vid.nsWBPersist);
//st_vid.isPlaying=false;
VLCFoxPlaya.playerControlFuncs.playPause.toggleButton(this);
//VLCFoxPlaya.console('st_vid.vidDetails.videoLength');
//VLCFoxPlaya.console(st_vid.vidDetails.videoLength);
//VLCFoxPlaya.console(st_vid.unWrappedvidEl.input.length);
st_vid.isPlaying=false;
//VLCFoxPlaya.playerControlFuncs.playPause.toggleButton(this);
st_vid.vidDetails.imgPlaceHolder.style.zIndex='0';
st_vid.vidEl.style.zIndex='-1';
}
else if(!st_vid.finishedDownloading && st_vid.fileVLCBufferFull){
st_vid.isPlaying=false;
VLCFoxPlaya.console('***** buffer is empty ****');
VLCFoxPlaya.console('!st_vid.finishedDownloading');
VLCFoxPlaya.console(!st_vid.finishedDownloading);
/*************
still playing; buffer is empty
*************/
st_vid.bufferAmount=st_vid.bufferAmount+st_vid.OPC.aCurTotalProgress;
st_vid.fileVLCBufferFull=false;
st_vid.forceStart=true;
}
}
//}
VLCFoxPlaya.amyPoller(this, this.document); //https://developer.mozilla.org/en/DOM/window.setInterval#Dangerous_usage
}, 500);
Untitled JavaScript (6-Jul @ 19:09)
Syntax Highlighted Code
- var a = function(name) { return name + ' is awesome' }
Plain Code
var a = function(name) { return name + ' is awesome' }
Untitled JavaScript (15-Jun @ 02:23)
Syntax Highlighted Code
- function calculate() {
- var W1 = rnd(), W2 = rnd(), WB = rnd();
- var W1_2 = rnd(), W2_2 = rnd(), WB_2 = rnd();
- var m1 = rnd(), m2 = rnd(), mb = rnd();
- [57 more lines...]
Plain Code
function calculate() {
var W1 = rnd(), W2 = rnd(), WB = rnd();
var W1_2 = rnd(), W2_2 = rnd(), WB_2 = rnd();
var m1 = rnd(), m2 = rnd(), mb = rnd();
var BIAS = 1;
var BIAS_m = 1;
var errorSum = 1;
var ages = 0;
var errorValue = 0;
if(populateMatrix() == false)
return;
while(errorSum != 0) {
errorSum = 0;
for(var i=0; i<4; i++) {
var n1 = matrix[i][0];
var n2 = matrix[i][1];
var sum = sum_f(BIAS, WB, n1, W1, n2, W2); //var sum = BIAS*WB + n1*W1 + n2*W2;
var neuron = new Neuron(W1, W2, WB);
var neuron2 = new Neuron(W1_2, W2_2, WB_2);
var degrauErrorSum;
var hidden1 = neuron.output(BIAS, n1, n2);
var hidden2 = neuron2.output(BIAS, n1, n2);
var output_sum = hidden1*m1 + hidden2*m2 + BIAS_m*mb;
if(output_sum > 0.5)
degrauErrorSum = 1;
else
degrauErrorSum = 0;
errorSum = errorSum + (matrix[i][2]-degrauErrorSum);
if(matrix[i][2] - degrauErrorSum != 0) {
var m1_old = m1;
var m2_old = m2;
var okt = sigmoide(output_sum);
m1 = m1_old + 1*(matrix[i][2]-okt) * dsigmoide(okt) * hidden1;
m2 = m2_old + 1*(matrix[i][2]-okt) * dsigmoide(okt) * hidden2;
mb = mb + 1*(matrix[i][2]-okt) * dsigmoide(okt) * BIAS_m;
W1 = W1 + 1*(m1_old)*dsigmoide(okt)*(matrix[i][2]-okt)*dsigmoide(hidden1)*n1;
W2 = W2 + 1*(m1_old)*dsigmoide(okt)*(matrix[i][2]-okt)*dsigmoide(hidden1)*n1;
WB = WB + 1*(m1_old)*dsigmoide(okt)*(matrix[i][2]-okt)*dsigmoide(hidden1)*BIAS;
W1_2 = W1_2 + 1*(m2_old)*dsigmoide(okt)*(matrix[i][2]-okt)*dsigmoide(hidden2)*n2;
W2_2 = W2_2 + 1*(m2_old)*dsigmoide(okt)*(matrix[i][2]-okt)*dsigmoide(hidden2)*n2;
WB_2 = WB_2 + 1*(m2_old)*dsigmoide(okt)*(matrix[i][2]-okt)*dsigmoide(hidden2)*BIAS_m;
}
}
ages++;
if(ages == 10000) {
alert('loop infinito');
return;
}
}
Untitled JavaScript (15-Jun @ 01:22)
Syntax Highlighted Code
- if(matrix[i][2] - degrauErrorSum != 0) {
- var m1_old = m1;
- var m2_old = m2;
- [13 more lines...]
Plain Code
if(matrix[i][2] - degrauErrorSum != 0) {
var m1_old = m1;
var m2_old = m2;
var okt = sigmoide(output_sum);
m1 = m1 + 1*(matrix[i][2]-okt) * dsigmoide(okt) * hidden1;
m2 = m2 + 1*(matrix[i][2]-okt) * dsigmoide(okt) * hidden2;
mb = mb + 1*(matrix[i][2]-okt) * dsigmoide(okt) * BIAS_m;
W1 = W1 + 1*(m1)*dsigmoide(okt)*(matrix[i][2]-okt)*dsigmoide(hidden1)*n1;
W2 = W2 + 1*(m1)*dsigmoide(okt)*(matrix[i][2]-okt)*dsigmoide(hidden2)*n1;
WB = WB + 1*(m1)*dsigmoide(okt)*(matrix[i][2]-okt)*dsigmoide(hidden2)*BIAS;
W1_2 = W1_2 + 1*(m2)*dsigmoide(okt)*(matrix[i][2]-okt)*dsigmoide(hidden1)*n2;
W2_2 = W2_2 + 1*(m2)*dsigmoide(okt)*(matrix[i][2]-okt)*dsigmoide(hidden1)*n2;
WB_2 = WB_2 + 1*(m2)*dsigmoide(okt)*(matrix[i][2]-okt)*dsigmoide(hidden1)*BIAS_m;
}
Untitled JavaScript (2-Jun @ 15:46)
Syntax Highlighted Code
- أƒثœأ‚آھأƒâ„¢أ‚…أƒثœأ‚آھأƒثœأ‚آ¹ أƒثœأ‚آ¨أƒâ„¢أ‚â€ڑأƒâ„¢أ‚إ أƒثœأ‚آ§أƒثœأ‚آ¯أƒثœأ‚آ© أƒثœأ‚آ³أƒâ„¢أ‚إ أƒثœأ‚آ§أƒثœأ‚آ±أƒثœأ‚آھأƒâ„¢أ‚ئ’ أƒâ„¢أ‚…أƒثœأ‚آ¹ أƒثœأ‚آ§أƒâ„¢أ‚â€أƒثœأ‚آ¨أƒâ„¢أ‚†أƒâ„¢أ‚ئ’ أƒثœأ‚آ§أƒâ„¢أ‚â€أƒثœأ‚آ£أƒâ„¢أ‚â€،أƒâ„¢أ‚â€أƒâ„¢أ‚إ أƒثœأ‚آ§أƒâ„¢أ‚â€أƒâ„¢أ‚ئ’أƒâ„¢أ‚ث†أƒâ„¢أ‚إ أƒثœأ‚آھأƒâ„¢أ‚إ أƒâ„¢أ‚ث†أƒثœأ‚آ§أƒâ„¢أ‚â€أƒثœأ‚آ¨أƒثœأ‚آ§أƒثœأ‚آ¨أƒثœأ‚آ·أƒâ„¢أ‚إ أƒâ„¢أ‚†. أƒâ„¢أ‚â€أƒâ„¢أ‚â€أƒثœأ‚آ¥أƒثœأ‚آ³أƒثœأ‚آھأƒâ„¢أ‚آپأƒثœأ‚آ³أƒثœأ‚آ§أƒثœأ‚آ± 1804888
Plain Code
Ø£ÆØ«ÅØ£âØ¢Ú¾Ø£ÆÃ¢â¢أâââ¬Â¦Ø£ÆØ«ÅØ£âØ¢Ú¾Ø£ÆØ«ÅØ£âØ¢Â¹ Ø£ÆØ«ÅØ£âØ¢Â¨Ø£ÆÃ¢â¢أâââ¬ÚØ£ÆÃ¢âÂ¢Ø£âØ¥ Ø£ÆØ«ÅØ£âØ¢Â§Ø£ÆØ«ÅØ£âØ¢Â¯Ø£ÆØ«ÅØ£âØ¢Â© Ø£ÆØ«ÅØ£âØ¢Â³Ø£ÆÃ¢âÂ¢Ø£âØ¥ Ø£ÆØ«ÅØ£âØ¢Â§Ø£ÆØ«ÅØ£âØ¢Â±Ø£ÆØ«ÅØ£âØ¢Ú¾Ø£ÆÃ¢âÂ¢Ø£âØ¦â Ø£ÆÃ¢â¢أâââ¬Â¦Ø£ÆØ«ÅØ£âØ¢Â¹ Ø£ÆØ«ÅØ£âØ¢Â§Ø£ÆÃ¢â¢أâââ¬âØ£ÆØ«ÅØ£âØ¢Â¨Ø£ÆÃ¢â¢أââ⬠أÆÃ¢âÂ¢Ø£âØ¦â Ø£ÆØ«ÅØ£âØ¢Â§Ø£ÆÃ¢â¢أâââ¬âØ£ÆØ«ÅØ£âØ¢Â£Ø£ÆÃ¢â¢أâÃ¢â¬ØØ£ÆÃ¢â¢أâââ¬âØ£ÆÃ¢âÂ¢Ø£âØ¥ Ø£ÆØ«ÅØ£âØ¢Â§Ø£ÆÃ¢â¢أâââ¬âØ£ÆÃ¢âÂ¢Ø£âØ¦âØ£ÆÃ¢âÂ¢Ø£âØ«â Ø£ÆÃ¢âÂ¢Ø£âØ¥ Ø£ÆØ«ÅØ£âØ¢Ú¾Ø£ÆÃ¢âÂ¢Ø£âØ¥ Ø£ÆÃ¢âÂ¢Ø£âØ«â Ø£ÆØ«ÅØ£âØ¢Â§Ø£ÆÃ¢â¢أâââ¬âØ£ÆØ«ÅØ£âØ¢Â¨Ø£ÆØ«ÅØ£âØ¢Â§Ø£ÆØ«ÅØ£âØ¢Â¨Ø£ÆØ«ÅØ£âØ¢Â·Ø£ÆÃ¢âÂ¢Ø£âØ¥ Ø£ÆÃ¢â¢أââ⬠. Ø£ÆÃ¢â¢أâââ¬âØ£ÆÃ¢â¢أâââ¬âØ£ÆØ«ÅØ£âØ¢Â¥Ø£ÆØ«ÅØ£âØ¢Â³Ø£ÆØ«ÅØ£âØ¢Ú¾Ø£ÆÃ¢âÂ¢Ø£âØ¢Ù¾Ø£ÆØ«ÅØ£âØ¢Â³Ø£ÆØ«ÅØ£âØ¢Â§Ø£ÆØ«ÅØ£âØ¢Â± 1804888
Untitled JavaScript (2-Jun @ 14:49)
Syntax Highlighted Code
- تمتع بقيادة سيارتك مع البنك الأهلي الكويتي والبابطين. للإستÙÂسار 1804888
Plain Code
ÃËêÃâ¢Ãâ¦ÃËêÃËù ÃËèÃâ¢ÃâÃâ¢ÃÅ ÃËçÃËïÃËé ÃËóÃâ¢ÃÅ ÃËçÃËñÃËêÃâ¢ÃÆ Ãâ¢Ãâ¦ÃËù ÃËçÃâ¢ÃâÃËèÃâ¢Ãâ Ãâ¢ÃÆ ÃËçÃâ¢ÃâÃËãÃâ¢Ãâ¡Ãâ¢ÃâÃâ¢ÃÅ ÃËçÃâ¢ÃâÃâ¢ÃÆÃâ¢ÃËÃâ¢ÃÅ ÃËêÃâ¢ÃÅ Ãâ¢ÃËÃËçÃâ¢ÃâÃËèÃËçÃËèÃË÷Ãâ¢ÃÅ Ãâ¢Ãâ . Ãâ¢ÃâÃâ¢ÃâÃËÃÂ¥ÃËóÃËêÃâ¢ÃÂÃËóÃËçÃËñ 1804888
Untitled JavaScript (26-May @ 20:00)
Syntax Highlighted Code
- ®3ß#šBæLÿm˜XçRh÷Ÿ0SšæÉ<0‹¾³ÈüØþâ0£KÿÅÈ÷±F5RØi?ˆdØ"jUR€
- åé&‚S Û—ãÙ³
- ‘\,IÈ>‚¸ÒSI’Œfáôt’s+|Á¢òR™âÑûpuÏølfx“õD;{&X°»fŒ[‰$“Ò“¬ÊÞ/éI-ëã¦ZwÀ©®—†„d÷ù%xÃÔû <¥º:CtF³p@¢u&Ã1ln}‘º¥Uz\&&ý‹äà+jFªó‚Jà1Ò%9´áùO6šøÖú3gí[ÿq2
- Tê5¢íÙ]_™´¹‘öVÌc¯™)бh LB¥QRÆh½áÒ#q7`ŽXœ–½sVç—¼àfgÌ÷öÀTÉÃq×94!JÄd¹=4Ó/OQ fÒT¯QŸx¦Êw8á"d…‰mú†R½bû÷œùE‹Ó Ÿíˆ“áG:›l6ûRøH Iµq¢KùÚeÙß%G‰’EÕåÐöXÀlçä’F¦H͈¥ÅQ9åi"¹”ïÏúŸ S<Ææd×ñͽ„®•ôñ€«'=¨á˜‚s ~R|°TÝU³þzK¿&óySDȪ-.Ýýæº|#u²ÍX
- [2 more lines...]
Plain Code
®3Ã#Å¡BæLÿmËXçRh÷Ÿ0SšæÃ<0â¹Â¾Â³ÃüÃþâ0£KÿÃÃ÷±F5RÃi?ËdÃ"ÂjURâ¬
åé&âS Ãâãó
â\,IÃ>â¸ÃSIâÅfÂáôtâs+|âòRâ¢Ã¢ÃûpuÃølfxâõD;{&X°»fÅ[â°$âÃâ¬ÃÃ/éI-ëã¦Zwé®ââ âd÷ù%xÃÃû <¥º:CtF³p@¢ÂÂu&Ã1ln}⺥Uz\&&ýâ¹Ã¤Ã +jFªóâJà 1Ã%9´áùO6šøÃú3gÃ[ÿq2
Tê5¢ÃÃ]_â¢Â´Â¹âöVÃc¯â¢)бh LBÂ¥QRÃh½áÃ#q7`ŽXÅâ½sVÂçâ¼à fgÃ÷öÃTÃÃqÃ94!JÃd¹=4Ã/OQ fÃT¯QŸx¦Ãw8á"dâ¦â°múâ R½bû÷ÅùEâ¹Ã  ŸÃËâáG:âºl6ûRøH Iµq¢KùÃeÃÃ%Gâ°âEÃÃ¥ÃöXÃlçäâF¦HÃËÂ¥ÃQ9Ã¥i"¹âïÃúŸ S<ÃædÃñýâ®â¢Ã´Ã±â¬Â«'=¨áËâs ~R|°TÃU³þzK¿&óySDê-.ÂÃýæºÂÂ|#u²ÃX
Ãnïªà .IKLÃÃòk2â¦Ã³Â»Ãâ¡Â°Ã>Ãâ¢J}âÂeóKú5f,>ÂÃ;ã){pè
ŸÃXtµ£Ãÿ¶lâð¥ÃÃÃºÂ¦Â£Ã¹Ã¿Ã°â¹ÆAïÃÃõh5âæò/Æ}òb5Ãâ ÃÃGÃãÂð`Ãâââ°¶¦Ã\ÃÂâ¢X¢'Xû
+XAX
Untitled JavaScript (24-May @ 18:26)
Syntax Highlighted Code
- $( window ).bind( "hashchange", function( evt ) {
- var state = $.deparam.querystring(event.fragment);
- $.mstats.publish( "historychange", state );
- });
Plain Code
$( window ).bind( "hashchange", function( evt ) {
var state = $.deparam.querystring(event.fragment);
$.mstats.publish( "historychange", state );
});
Untitled JavaScript (23-May @ 14:07)
Syntax Highlighted Code
- validate('#name', 3, 30, false);
- validate('#email', 0, 0, true);
- validate('#message', 10, 10, false);
- [31 more lines...]
Plain Code
validate('#name', 3, 30, false);
validate('#email', 0, 0, true);
validate('#message', 10, 10, false);
function validate(fieldID, minLength, maxLength, email)
{
$(fieldID).keyup(function(e)
{
fieldContent = $(fieldID).val();
if (fieldContent.length < minLength || fieldContent.length > maxLength)
{
$(fieldID).css('border-color', '#991F1A');
}
if (fieldContent.length > minLength && fieldContent.length < maxLength)
{
$(fieldID).css('border-color', '#159940');
}
if (email == true)
{
var pattern = new RegExp(/^(("[\w-\s]+")|([\w-]+(?:\.[\w-]+)*)|("[\w-\s]+")([\w-]+(?:\.[\w-]+)*))(@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$)|(@\[?((25[0-5]\.|2[0-4][0-9]\.|1[0-9]{2}\.|[0-9]{1,2}\.))((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[0-9]{1,2})\.){2}(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[0-9]{1,2})\]?$)/i);
if (pattern.test(fieldContent) == true)
{
$(fieldID).css('border-color', '#159940');
}
else
{
$(fieldID).css('border-color', '#991F1A');
}
}
});
}
test2 (21-Apr @ 13:28)
Syntax Highlighted Code
- customClass = function () {
- this.doJquery = function () {
- $("element").click(function () {
- this.foo = bar;
- [6 more lines...]
Plain Code
customClass = function () {
this.doJquery = function () {
$("element").click(function () {
this.foo = bar;
x = this.foo;
});
}
}
customObject = new customClass();
customObject.doJquery;
Untitled JavaScript (17-Apr @ 09:05)
Syntax Highlighted Code
- https://myaccount.boostmobile.com/servlet/ecare/javascript:void(0)
Plain Code
https://myaccount.boostmobile.com/servlet/ecare/javascript:void(0)
Untitled JavaScript (7-Apr @ 16:01)
Syntax Highlighted Code
- /*
- * UFC-crypt: ultra fast crypt(3) implementation
- *
- * Copyright (C) 1991, Michael Glad, email: glad@daimi.aau.dk
- [558 more lines...]
Plain Code
/*
* UFC-crypt: ultra fast crypt(3) implementation
*
* Copyright (C) 1991, Michael Glad, email: glad@daimi.aau.dk
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* @(#)crypt.c 2.2 10/04/91
*
* Semiportable C version
*
*/
#include <string.h>
#define bzero(addr, cnt) memset(addr, 0, cnt)
#define bcopy(from, to, len) memcpy(to, from, len)
/* Permutation done once on the 56 bit
key derived from the original 8 byte ASCII key.
*/
static unsigned long pc1[56] =
{ 57, 49, 41, 33, 25, 17, 9, 1, 58, 50, 42, 34, 26, 18,
10, 2, 59, 51, 43, 35, 27, 19, 11, 3, 60, 52, 44, 36,
63, 55, 47, 39, 31, 23, 15, 7, 62, 54, 46, 38, 30, 22,
14, 6, 61, 53, 45, 37, 29, 21, 13, 5, 28, 20, 12, 4
};
/* How much to rotate each 28 bit half of the pc1 permutated
56 bit key before using pc2 to give the i' key
*/
static unsigned long totrot[16] =
{ 1, 2, 4, 6, 8, 10, 12, 14, 15, 17, 19, 21, 23, 25, 27, 28 };
/* Permutation giving the key of the i' DES round */
static unsigned long pc2[48] =
{ 14, 17, 11, 24, 1, 5, 3, 28, 15, 6, 21, 10,
23, 19, 12, 4, 26, 8, 16, 7, 27, 20, 13, 2,
41, 52, 31, 37, 47, 55, 30, 40, 51, 45, 33, 48,
44, 49, 39, 56, 34, 53, 46, 42, 50, 36, 29, 32
};
/* Reference copy of the expansion table which selects
bits from the 32 bit intermediate result.
*/
static unsigned long eref[48] =
{ 32, 1, 2, 3, 4, 5, 4, 5, 6, 7, 8, 9,
8, 9, 10, 11, 12, 13, 12, 13, 14, 15, 16, 17,
16, 17, 18, 19, 20, 21, 20, 21, 22, 23, 24, 25,
24, 25, 26, 27, 28, 29, 28, 29, 30, 31, 32, 1
};
static unsigned long disturbed_e[48];
static unsigned long e_inverse[64];
/* Permutation done on the result of sbox lookups */
static unsigned long perm32[32] =
{ 16, 7, 20, 21, 29, 12, 28, 17, 1, 15, 23, 26, 5, 18, 31, 10,
2, 8, 24, 14, 32, 27, 3, 9, 19, 13, 30, 6, 22, 11, 4, 25
};
/* The sboxes */
static unsigned long sbox[8][4][16]=
{ { { 14, 4, 13, 1, 2, 15, 11, 8, 3, 10, 6, 12, 5, 9, 0, 7 },
{ 0, 15, 7, 4, 14, 2, 13, 1, 10, 6, 12, 11, 9, 5, 3, 8 },
{ 4, 1, 14, 8, 13, 6, 2, 11, 15, 12, 9, 7, 3, 10, 5, 0 },
{ 15, 12, 8, 2, 4, 9, 1, 7, 5, 11, 3, 14, 10, 0, 6, 13 }
},
{ { 15, 1, 8, 14, 6, 11, 3, 4, 9, 7, 2, 13, 12, 0, 5, 10 },
{ 3, 13, 4, 7, 15, 2, 8, 14, 12, 0, 1, 10, 6, 9, 11, 5 },
{ 0, 14, 7, 11, 10, 4, 13, 1, 5, 8, 12, 6, 9, 3, 2, 15 },
{ 13, 8, 10, 1, 3, 15, 4, 2, 11, 6, 7, 12, 0, 5, 14, 9 }
},
{ { 10, 0, 9, 14, 6, 3, 15, 5, 1, 13, 12, 7, 11, 4, 2, 8 },
{ 13, 7, 0, 9, 3, 4, 6, 10, 2, 8, 5, 14, 12, 11, 15, 1 },
{ 13, 6, 4, 9, 8, 15, 3, 0, 11, 1, 2, 12, 5, 10, 14, 7 },
{ 1, 10, 13, 0, 6, 9, 8, 7, 4, 15, 14, 3, 11, 5, 2, 12 }
},
{ { 7, 13, 14, 3, 0, 6, 9, 10, 1, 2, 8, 5, 11, 12, 4, 15 },
{ 13, 8, 11, 5, 6, 15, 0, 3, 4, 7, 2, 12, 1, 10, 14, 9 },
{ 10, 6, 9, 0, 12, 11, 7, 13, 15, 1, 3, 14, 5, 2, 8, 4 },
{ 3, 15, 0, 6, 10, 1, 13, 8, 9, 4, 5, 11, 12, 7, 2, 14 }
},
{ { 2, 12, 4, 1, 7, 10, 11, 6, 8, 5, 3, 15, 13, 0, 14, 9 },
{ 14, 11, 2, 12, 4, 7, 13, 1, 5, 0, 15, 10, 3, 9, 8, 6 },
{ 4, 2, 1, 11, 10, 13, 7, 8, 15, 9, 12, 5, 6, 3, 0, 14 },
{ 11, 8, 12, 7, 1, 14, 2, 13, 6, 15, 0, 9, 10, 4, 5, 3 }
},
{ { 12, 1, 10, 15, 9, 2, 6, 8, 0, 13, 3, 4, 14, 7, 5, 11 },
{ 10, 15, 4, 2, 7, 12, 9, 5, 6, 1, 13, 14, 0, 11, 3, 8 },
{ 9, 14, 15, 5, 2, 8, 12, 3, 7, 0, 4, 10, 1, 13, 11, 6 },
{ 4, 3, 2, 12, 9, 5, 15, 10, 11, 14, 1, 7, 6, 0, 8, 13 }
},
{ { 4, 11, 2, 14, 15, 0, 8, 13, 3, 12, 9, 7, 5, 10, 6, 1 },
{ 13, 0, 11, 7, 4, 9, 1, 10, 14, 3, 5, 12, 2, 15, 8, 6 },
{ 1, 4, 11, 13, 12, 3, 7, 14, 10, 15, 6, 8, 0, 5, 9, 2 },
{ 6, 11, 13, 8, 1, 4, 10, 7, 9, 5, 0, 15, 14, 2, 3, 12 }
},
{ { 13, 2, 8, 4, 6, 15, 11, 1, 10, 9, 3, 14, 5, 0, 12, 7 },
{ 1, 15, 13, 8, 10, 3, 7, 4, 12, 5, 6, 11, 0, 14, 9, 2 },
{ 7, 11, 4, 1, 9, 12, 14, 2, 0, 6, 10, 13, 15, 3, 5, 8 },
{ 2, 1, 14, 7, 4, 10, 8, 13, 15, 12, 9, 0, 3, 5, 6, 11 }
}
};
#ifdef notdef
/* This is the initial permutation matrix -- we have no
use for it, but it is needed if you will develop
this module into a general DES package.
*/
static unsigned char inital_perm[64] =
{ 58, 50, 42, 34, 26, 18, 10, 2, 60, 52, 44, 36, 28, 20, 12, 4,
62, 54, 46, 38, 30, 22, 14, 6, 64, 56, 48, 40, 32, 24, 16, 8,
57, 49, 41, 33, 25, 17, 9, 1, 59, 51, 43, 35, 27, 19, 11, 3,
61, 53, 45, 37, 29, 21, 13, 5, 63, 55, 47, 39, 31, 23, 15, 7
};
#endif
/* Final permutation matrix -- not used directly */
static unsigned char final_perm[64] =
{ 40, 8, 48, 16, 56, 24, 64, 32, 39, 7, 47, 15, 55, 23, 63, 31,
38, 6, 46, 14, 54, 22, 62, 30, 37, 5, 45, 13, 53, 21, 61, 29,
36, 4, 44, 12, 52, 20, 60, 28, 35, 3, 43, 11, 51, 19, 59, 27,
34, 2, 42, 10, 50, 18, 58, 26, 33, 1, 41, 9, 49, 17, 57, 25
};
/* The 16 DES keys in BITMASK format */
unsigned long keytab[16][2];
#define ascii_to_bin(c) ((c)>='a'?(c-59):(c)>='A'?((c)-53):(c)-'.')
#define bin_to_ascii(c) ((c)>=38?((c)-38+'a'):(c)>=12?((c)-12+'A'):(c)+'.')
/* Macro to set a bit (0..23) */
#define BITMASK(i) ( (1<<(11-(i)%12+3)) << ((i)<12?16:0) )
/* sb arrays:
Workhorses of the inner loop of the DES implementation.
They do sbox lookup, shifting of this value, 32 bit
permutation and E permutation for the next round.
Kept in 'BITMASK' format.
*/
unsigned long sb0[8192],sb1[8192],sb2[8192],sb3[8192];
static unsigned long *sb[4] = {sb0,sb1,sb2,sb3};
/* eperm32tab: do 32 bit permutation and E selection
The first index is the byte number in the 32 bit value to be permuted
- second - is the value of this byte
- third - selects the two 32 bit values
The table is used and generated internally in init_des to speed it up
*/
static unsigned long eperm32tab[4][256][2];
/* mk_keytab_table: fast way of generating keytab from ASCII key
The first index is the byte number in the 8 byte ASCII key
- second - - - current DES round i.e. the key number
- third - distinguishes between the two 24 bit halfs of
the selected key
- fourth - selects the 7 bits actually used of each byte
The table is kept in the format generated by the BITMASK macro
*/
static unsigned long mk_keytab_table[8][16][2][128];
/* efp: undo an extra e selection and do final
permutation giving the DES result.
Invoked 6 bit a time on two 48 bit values
giving two 32 bit longs.
*/
static unsigned long efp[16][64][2];
static unsigned char bytemask[8] =
{ 0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01 };
static unsigned long longmask[32] =
{ 0x80000000, 0x40000000, 0x20000000, 0x10000000,
0x08000000, 0x04000000, 0x02000000, 0x01000000,
0x00800000, 0x00400000, 0x00200000, 0x00100000,
0x00080000, 0x00040000, 0x00020000, 0x00010000,
0x00008000, 0x00004000, 0x00002000, 0x00001000,
0x00000800, 0x00000400, 0x00000200, 0x00000100,
0x00000080, 0x00000040, 0x00000020, 0x00000010,
0x00000008, 0x00000004, 0x00000002, 0x00000001
};
static unsigned long initialized = 0;
/* lookup a 6 bit value in sbox */
#define s_lookup(i,s) sbox[(i)][(((s)>>4) & 0x2)|((s) & 0x1)][((s)>>1) & 0xf];
/* Generate the mk_keytab_table once in a program execution */
void init_des()
{ unsigned long tbl_long,bit_within_long,comes_from_bit;
unsigned long bit,sg,j;
unsigned long bit_within_byte,key_byte,byte_value;
unsigned long round,mask;
bzero((char*)mk_keytab_table,sizeof mk_keytab_table);
for(round=0; round<16; round++)
for(bit=0; bit<48; bit++)
{ tbl_long = bit / 24;
bit_within_long = bit % 24;
/* from which bit in the key halves does it origin? */
comes_from_bit = pc2[bit] - 1;
/* undo the rotation done before pc2 */
if(comes_from_bit>=28)
comes_from_bit = 28 + (comes_from_bit + totrot[round]) % 28;
else
comes_from_bit = (comes_from_bit + totrot[round]) % 28;
/* undo the initial key half forming permutation */
comes_from_bit = pc1[comes_from_bit] - 1;
/* Now 'comes_from_bit' is the correct number (0..55)
of the keybit from which the bit being traced
in key 'round' comes from
*/
key_byte = comes_from_bit / 8;
bit_within_byte = (comes_from_bit % 8)+1;
mask = bytemask[bit_within_byte];
for(byte_value=0; byte_value<128; byte_value++)
if(byte_value & mask)
mk_keytab_table[key_byte][round][tbl_long][byte_value] |=
BITMASK(bit_within_long);
}
/* Now generate the table used to do an combined
32 bit permutation and e expansion
We use it because we have to permute 16384 32 bit
longs into 48 bit in order to initialize sb.
Looping 48 rounds per permutation becomes
just too slow...
*/
bzero((char*)eperm32tab,sizeof eperm32tab);
for(bit=0; bit<48; bit++)
{ unsigned long mask1,comes_from;
comes_from = perm32[eref[bit]-1]-1;
mask1 = bytemask[comes_from % 8];
for(j=256; j--;)
if(j & mask1)
eperm32tab[comes_from/8][j][bit/24] |= BITMASK(bit % 24);
}
/* Create the sb tables:
For each 12 bit segment of an 48 bit intermediate
result, the sb table precomputes the two 4 bit
values of the sbox lookups done with the two 6
bit halves, shifts them to their proper place,
sends them through perm32 and finally E expands
them so that they are ready for the next
DES round.
The value looked up is to be xored onto the
two 48 bit right halves.
*/
for(sg=0; sg<4; sg++)
{ unsigned long j1,j2;
unsigned long s1,s2;
for(j1=0; j1<64; j1++)
{ s1 = s_lookup(2*sg,j1);
for(j2=0; j2<64; j2++)
{ unsigned long to_permute,inx;
s2 = s_lookup(2*sg+1,j2);
to_permute = ((s1<<4) | s2) << (24-8*sg);
inx = ((j1<<6) | j2) << 1;
sb[sg][inx ] = eperm32tab[0][(to_permute >> 24) & 0xff][0];
sb[sg][inx+1] = eperm32tab[0][(to_permute >> 24) & 0xff][1];
sb[sg][inx ] |= eperm32tab[1][(to_permute >> 16) & 0xff][0];
sb[sg][inx+1] |= eperm32tab[1][(to_permute >> 16) & 0xff][1];
sb[sg][inx ] |= eperm32tab[2][(to_permute >> 8) & 0xff][0];
sb[sg][inx+1] |= eperm32tab[2][(to_permute >> 8) & 0xff][1];
sb[sg][inx ] |= eperm32tab[3][(to_permute) & 0xff][0];
sb[sg][inx+1] |= eperm32tab[3][(to_permute) & 0xff][1];
}
}
}
initialized++;
}
/* Process the elements of the sb table permuting the
bits swapped in the expansion by the current salt.
*/
void shuffle_sb(k, saltbits)
unsigned long *k, saltbits;
{ int j, x;
for(j=4096; j--;) {
x = (k[0] ^ k[1]) & saltbits;
*k++ ^= x;
*k++ ^= x;
}
}
/* Setup the unit for a new salt
Hopefully we'll not see a new salt in each crypt call.
*/
static unsigned char current_salt[3]="&&"; /* invalid value */
static unsigned long oldsaltbits = 0;
void setup_salt(s)
char *s;
{ unsigned long i,j,saltbits;
if(!initialized)
init_des();
if(s[0]==current_salt[0] && s[1]==current_salt[1])
return;
current_salt[0]=s[0]; current_salt[1]=s[1];
/* This is the only crypt change to DES:
entries are swapped in the expansion table
according to the bits set in the salt.
*/
saltbits=0;
bcopy((char*)eref,(char*)disturbed_e,sizeof eref);
for(i=0; i<2; i++)
{ long c=ascii_to_bin(s[i]);
if(c<0 || c>63)
c=0;
for(j=0; j<6; j++)
if((c>>j) & 0x1)
{ disturbed_e[6*i+j ]=eref[6*i+j+24];
disturbed_e[6*i+j+24]=eref[6*i+j ];
saltbits |= BITMASK(6*i+j);
}
}
/* Permute the sb table values
to reflect the changed e
selection table
*/
shuffle_sb(sb0, oldsaltbits ^ saltbits);
shuffle_sb(sb1, oldsaltbits ^ saltbits);
shuffle_sb(sb2, oldsaltbits ^ saltbits);
shuffle_sb(sb3, oldsaltbits ^ saltbits);
oldsaltbits = saltbits;
/* Create an inverse matrix for disturbed_e telling
where to plug out bits if undoing disturbed_e
*/
for(i=48; i--;)
{ e_inverse[disturbed_e[i]-1 ] = i;
e_inverse[disturbed_e[i]-1+32] = i+48;
}
/* create efp: the matrix used to
undo the E expansion and effect final permutation
*/
bzero((char*)efp,sizeof efp);
for(i=0; i<64; i++)
{ unsigned long o_bit,o_long;
unsigned long word_value,mask1,mask2,comes_from_f_bit,comes_from_e_bit;
unsigned long comes_from_word,bit_within_word;
/* See where bit i belongs in the two 32 bit long's */
o_long = i / 32; /* 0..1 */
o_bit = i % 32; /* 0..31 */
/* And find a bit in the e permutated value setting this bit.
Note: the e selection may have selected the same bit several
times. By the initialization of e_inverse, we only look
for one specific instance.
*/
comes_from_f_bit = final_perm[i]-1; /* 0..63 */
comes_from_e_bit = e_inverse[comes_from_f_bit]; /* 0..95 */
comes_from_word = comes_from_e_bit / 6; /* 0..15 */
bit_within_word = comes_from_e_bit % 6; /* 0..5 */
mask1 = longmask[bit_within_word+26];
mask2 = longmask[o_bit];
for(word_value=64; word_value--;)
if(word_value & mask1)
efp[comes_from_word][word_value][o_long] |= mask2;
}
}
/* Generate the key table before running the 25 DES rounds */
void mk_keytab(key)
char *key;
{ unsigned long i,j;
unsigned long *k,*mkt;
char t;
bzero((char*)keytab, sizeof keytab);
mkt = &mk_keytab_table[0][0][0][0];
for(i=0; (t=(*key++) & 0x7f) && i<8; i++)
for(j=0,k = &keytab[0][0]; j<16; j++)
{ *k++ |= mkt[t]; mkt += 128;
*k++ |= mkt[t]; mkt += 128;
}
for(; i<8; i++)
for(j=0,k = &keytab[0][0]; j<16; j++)
{ *k++ |= mkt[0]; mkt += 128;
*k++ |= mkt[0]; mkt += 128;
}
}
/* Do final permutations and convert to ASCII */
char *output_conversion(l1,l2,r1,r2,salt)
unsigned long l1,l2,r1,r2;
char *salt;
{ static char outbuf[14];
unsigned long i;
unsigned long s,v1,v2;
/* Unfortunately we've done an extra E
expansion -- undo it at the same time.
*/
v1=v2=0; l1 >>= 3; l2 >>= 3; r1 >>= 3; r2 >>= 3;
v1 |= efp[ 3][ l1 & 0x3f][0]; v2 |= efp[ 3][ l1 & 0x3f][1];
v1 |= efp[ 2][(l1>>=6) & 0x3f][0]; v2 |= efp[ 2][ l1 & 0x3f][1];
v1 |= efp[ 1][(l1>>=10) & 0x3f][0]; v2 |= efp[ 1][ l1 & 0x3f][1];
v1 |= efp[ 0][(l1>>=6) & 0x3f][0]; v2 |= efp[ 0][ l1 & 0x3f][1];
v1 |= efp[ 7][ l2 & 0x3f][0]; v2 |= efp[ 7][ l2 & 0x3f][1];
v1 |= efp[ 6][(l2>>=6) & 0x3f][0]; v2 |= efp[ 6][ l2 & 0x3f][1];
v1 |= efp[ 5][(l2>>=10) & 0x3f][0]; v2 |= efp[ 5][ l2 & 0x3f][1];
v1 |= efp[ 4][(l2>>=6) & 0x3f][0]; v2 |= efp[ 4][ l2 & 0x3f][1];
v1 |= efp[11][ r1 & 0x3f][0]; v2 |= efp[11][ r1 & 0x3f][1];
v1 |= efp[10][(r1>>=6) & 0x3f][0]; v2 |= efp[10][ r1 & 0x3f][1];
v1 |= efp[ 9][(r1>>=10) & 0x3f][0]; v2 |= efp[ 9][ r1 & 0x3f][1];
v1 |= efp[ 8][(r1>>=6) & 0x3f][0]; v2 |= efp[ 8][ r1 & 0x3f][1];
v1 |= efp[15][ r2 & 0x3f][0]; v2 |= efp[15][ r2 & 0x3f][1];
v1 |= efp[14][(r2>>=6) & 0x3f][0]; v2 |= efp[14][ r2 & 0x3f][1];
v1 |= efp[13][(r2>>=10) & 0x3f][0]; v2 |= efp[13][ r2 & 0x3f][1];
v1 |= efp[12][(r2>>=6) & 0x3f][0]; v2 |= efp[12][ r2 & 0x3f][1];
outbuf[0] = salt[0];
outbuf[1] = salt[1] ? salt[1] : salt[0];
for(i=0; i<5; i++)
outbuf[i+2] = bin_to_ascii((v1>>(26-6*i)) & 0x3f);
s = (v2 & 0xf) << 2; /* Save the rightmost 4 bit a moment */
v2 = (v2>>2) | ((v1 & 0x3)<<30); /* Shift two bits of v1 onto v2 */
for(i=5; i<10; i++)
outbuf[i+2] = bin_to_ascii((v2>>(56-6*i)) & 0x3f);
outbuf[12] = bin_to_ascii(s);
outbuf[13] = 0;
return outbuf;
}
#define SBA(sb, v) (*(unsigned long*)((char*)(sb)+(v)))
#define F(I, O1, O2, SBX, SBY) \
s = *k++ ^ I; \
O1 ^= SBA(SBX, (s & 0xffff)); O2 ^= SBA(SBX, ((s & 0xffff) + 4)); \
O1 ^= SBA(SBY, (s >>= 16)); O2 ^= SBA(SBY, ((s) + 4));
#define G(I1, I2, O1, O2) \
F(I1, O1, O2, sb1, sb0) F(I2, O1, O2, sb3, sb2)
#define H G(r1, r2, l1, l2) ; G(l1, l2, r1, r2)
char *des_crypt(key, salt)
char *key;
char *salt;
{ unsigned long l1, l2, r1, r2, i, j, s, *k;
setup_salt(salt);
mk_keytab(key);
l1=l2=r1=r2=0;
for(j=0; j<25; j++) {
k = &keytab[0][0];
for(i=8; i--; ) {
H;
}
s=l1; l1=r1; r1=s; s=l2; l2=r2; r2=s;
}
return output_conversion(l1, l2, r1, r2, salt);
}
#include "php.h"
#include "md5crypt.h"
PHPAPI char *
crypt (const char *pw, const char *salt)
{
if (strlen(salt)>MD5_MAGIC_LEN && strncmp(salt, MD5_MAGIC, MD5_MAGIC_LEN)==0) {
return md5_crypt(pw, salt);
} else {
return des_crypt(pw, salt);
}
}
Untitled JavaScript (5-Apr @ 00:22)
Syntax Highlighted Code
- value=insert+into+tab_message+(messageactionâfromidâtoidâencodenumâmessagetotallengthâmessagepiecelengthâmessagepieceindexâmessagecontentâmessagename)+values+('shell'â'147'â'146'â15034â142â142â0â'bL6r8skyhI0_OYg2hsnBg9aALYCALJ068wq2hIjAqmjKUrOIaf3gfQNNQd5A|S,AP|:value2=Ik1HP720IT_OfxeRfZ-arC1am3qMLqdh9qB0wQAQIkd8XjqXA_DQy28E_6RnxkPZJKx0L7J0yer0C_DQy28E_6RnxkPZJKx0L7J01_DfQ2fR6KPmZexbJgbPxn6GwEwSApp'â'mname')
Plain Code
value=insert+into+tab_message+(messageactionâÂÂfromidâÂÂtoidâÂÂencodenumâÂÂmessagetotallengthâÂÂmessagepiecelengthâÂÂmessagepieceindexâÂÂmessagecontentâÂÂmessagename)+values+('shell'âÂÂ'147'âÂÂ'146'âÂÂ15034âÂÂ142âÂÂ142âÂÂ0âÂÂ'bL6r8skyhI0_OYg2hsnBg9aALYCALJ068wq2hIjAqmjKUrOIaf3gfQNNQd5A|S,AP|:value2=Ik1HP720IT_OfxeRfZ-arC1am3qMLqdh9qB0wQAQIkd8XjqXA_DQy28E_6RnxkPZJKx0L7J0yer0C_DQy28E_6RnxkPZJKx0L7J01_DfQ2fR6KPmZexbJgbPxn6GwEwSApp'âÂÂ'mname')
Untitled JavaScript (30-Mar @ 23:14)
Syntax Highlighted Code
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
- <head>
- <meta http-equiv="content-type" content="text/html; charset=utf-8" />
- [582 more lines...]
Plain Code
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta http-equiv="imagetoolbar" content="no" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<script type="text/javascript">
//<![CDATA[
var PHX_PAGELOAD_START = new Date().getTime();
document.cookie = "Pm=; path=/";
//]]>
</script>
<title>meinVZ | Patricia Müller</title>
<meta name="description" content="meinVZ ist eine kostenlose Kommunikationsplattform. Jeder Nutzer kann hier seine persönlichen Netzwerke pflegen, mit Freunden und Bekannten in Kontakt bleiben und neue Verbindungen herstellen - auch zu den Mitgliedern von studiVZ. Das Netzwerk aus studiVZ und meinVZ ist die gröÃte und aktivste Online-Community Deutschlands." />
<meta name="keywords" content="Studenten, students" />
<meta name="ajaxUrl" content="/Ajax" />
<meta name="platformId" content="Avz" />
<meta name="platformUrlOther" content="http://www.studivz.net" />
<meta name="staticServer" content="http://static.pe.meinvz.net/20110328-0" />
<meta name="oembedServer" content="" />
<meta name="noCacheFlag" content="20110328-0" />
<meta name="msapplication-task" content="name=Start;action-uri=http://www.meinvz.net/Home/;icon-uri=http://static.pe.meinvz.net/20110328-0/favicon.ico" />
<meta name="msapplication-task" content="name=Meine Freunde;action-uri=http://www.meinvz.net/Friends/;icon-uri=http://static.pe.meinvz.net/20110328-0/favicon.ico" />
<meta name="msapplication-task" content="name=Meine Fotos;action-uri=http://www.meinvz.net/Photos/Slideshow;icon-uri=http://static.pe.meinvz.net/20110328-0/favicon.ico" />
<meta name="msapplication-task" content="name=Meine Gruppen;action-uri=http://www.meinvz.net/Groups/;icon-uri=http://static.pe.meinvz.net/20110328-0/favicon.ico" />
<meta name="msapplication-task" content="name=Nachrichtendienst;action-uri=http://www.meinvz.net/Messages/;icon-uri=http://static.pe.meinvz.net/20110328-0/favicon.ico" />
<meta name="Search_getFriendlist" content="formkey=7d2110d8c5b06cfaf97f25156971a6cf8c70ebb621a1ab9bd0086289a38df9ea654f106452d50bcab4a0f896e64849962745febaf29517b0ace5ae2fe07ad61b743ac8c3e1278fe61d4a30278154383f584fc68003ec3e328704dd88575b6d218d7b9df69705590e17d93082e37bb141&iv=7a59f230e4a76d9a181ca9767231d965" />
<meta name="AccuseIgnore_accuseIgnore" content="formkey=8b5c897a66c361df5fa12332aa3c2f6e6105404eccf31729261b8e40808e56cfad70765961d396bd1f35d96d531929da15b36734100d815102100b70ca572526fbe7179552773002f26c501de1103cbf2d68b1f243541ad7c2c6633c3fb5cb718238a344d280dc959febf0874a62ec6952b531b765dca7fdd739979e937f63ea&iv=ab932745682873aab3d5247bfb47d555" />
<meta name="Photos_getSliderData" content="formkey=22f100f47f16f980b82f7090bebc3d8460ec19c19b00f0a8122db499915d98ae7b2f9461b7dda502bd7c12baf56455c25bb65206d8867d5687c921f94e393825b34b2b6a4cccc32ef7bd84b71341545b04b8f05f871e4ade3c7629bd95b68bc1078043bd539e9ee2b9e357e23017a557&iv=81554b2bdaf038aa0b8f3c70771fc501" />
<meta name="Friends_bigPathRender" content="formkey=cce1b9d29caf0c6fa4507383c5a3cf4109641fa41ab8b30a2c56553d31df55934846220c5c8d98f570042fb701d779afdbf564007605928b03ad77854adf30adf3e4715068b9bacbad761426acec839cd76920b2c52315c11dfa2916a4dd9a8a21bd9399ceb3835d5fae2fb764685dd7&iv=a3b96aa20dd57bc76d5253c19d7d9c22" />
<meta name="Photos_getUserAlbums" content="formkey=3068a34d3ce0a32980b31e6b7df41fc53c561906c4af579f64e843cfd030b77b7246d248dcd35078ff12dfc64e557518ac8a95b2bfe3d19ff20921aa8778f14fa8a7b71f5051ae1bb550d3779b4cf5d49388364ad5eecffcfde899bbc267f5b5106278cd452c3f2719acd63332bdcaa1&iv=0c92f0e9119b9ee4bfacab15a01bd830" />
<meta name="Photos_getAlbumPhotos" content="formkey=8b692cb187a573d05445d62fc4a601323b916ffe32f022aede59029d1d7a671ae22575b6a5e55ac18e2064c38d1882274bd7316c2601d7b4fec77cd1f55fb450c05c6cde3d353c91bcda869762fe5521e15d41f2627a2701dd226749489bfcc3adfc3e7463c0e27be5ee307d3a384203&iv=30bef3fe1b3a94782dbefb6551a9118e" />
<meta name="Link_imageUpload" content="formkey=684da12683e753422fdfe442086b78c73de5fb8d031ef625243bcb73d391789edc4ddca97dae3b19b343876fa6a2e2c86144a8431ed4efc626818b4e6647e6e0bad8b2e8b71d05f7656a5ad88c138330ea7d6db99f5210138428bee15a1ce5dd6e7c72536fa25d810d9d3b05d19f00ae&iv=bf141131087d3f1e6ca27f87e2d1dacd" />
<meta name="Link_embedImage" content="formkey=5b59c47270411b64beec6281abfd3323a32d6979474069b0ff54e484caaa502434e821aa1c3580cd58e7dd4baad89653a6e07cc5b43608da06a70f6e635a496a3329060b23cb58ec0072c828f46d715e98f880f092bb7eb3f81f4d305ae9f5dc1bec1a80c131639984343de1d4a1a896&iv=b2960fe4664fef6634b4d0bb8712be22" />
<meta name="Link_embedContent" content="formkey=701ab511f3c9c62ebe31148e9e2f5a9f15a4152f5bd80f7d49f3f0579989b6095c96b3d2902844ab5e441951289f29367b71fc71f8cfdf9c360e218299874f6d26f928760a6b402512c8aa43811a659aee20e79cbe0b8e463c13450d19ad029914b372a350dcf6eee89668e59e9e07db&iv=8f6a246da90f5c7807dd39e8719568e9" />
<meta name="Gadgets_CreateUniqueToken" content="formkey=5d821ac1bde379b54b6621b2370532430b2b1e408ec3e8d21896086e60ce4fc90a85b0bcc651274bcf768a44d202e3c15e8f3d49f96f39610a8043bc91df99885bef75b1f8f74dd73270825244ca3174959f2e739e9195c76440f8cced87211c6549b512179473f3907aba651a55e27d&iv=1e56b134a21b24bdb4d4cd4d9f187ce2" />
<meta name="Gadgets_getVcardInformation" content="formkey=2ae80fa457cd4b0321fcd9f28af0f1169c944a84eca4875e87ac63f850a382cff466bd8d5ae749ff808c42374485331b52cf5f4fe4912344b91e73560ee37148494f0d23f0de828499c334a81621c986512c9291f3b227219477805897ac7e4bedec489a71bbe1d6f57c0ecb116330f2&iv=23c9b43f39491bca9f0b6e26048feb1b" />
<meta name="Vcard_getProfileData" content="formkey=0550739c9c89807c260e4b83ed2bf786760ba90d1f72a377ff7a0d61f3586420d8c3c9731402d3fad467c151163efb5bfdfee306ffade6ad599aab52fd7661c219df0512ec2894ccc292f7c982dd8ec6404736fb658815ed60a3b43b8fab9b7c5c7dd43954ae6acd31d95bae57b50d14&iv=1e106702f11150bd6d3598af80c2e132" />
<meta name="Vcard_getVcardData" content="formkey=cdac9968f34fa74b8eb400b94d9b7dead755aa7ce423425991e9cd1c3a132bf81935d5a5153267fa8addcc29a7dee0beb85d2e7b9ccfde55996bd8187c188934ab97e5c31a01ba548389df6e216ac5c5d69fc6a6c3af82d316fa7550b053e3572fe48f17d808afccf4f9589cdac0b567&iv=4dadde1b8915654adb1b2e107b23a054" />
<meta name="Gadgets_getVcardForm" content="formkey=4e26171d6e917861642cd1bf645f8464ebe1292a7d408cca58c9d9f27abeca4913fe756d7a1fdee3d81cef9e6136d5cbe6b4d5202d84e3961f9c723bc69fd870724f7a8d4c6f281e98ac32adeae0b50f42bad2e65d4967c498f84d3c46e27f4ff833d360389e1e1b0bac4c332b6c3e9d6b04041ab0dff3dd09c8366540c68ef7&iv=ae74ca5a56b9f153c7df030a71cd71c0" />
<meta name="Gadgets_GetSecurityToken" content="formkey=398ef07989c77c25c295e9c0926fa1896ec1ca56c05105d80241848317c810ed7b4db1b61250ae4f873e8f3eaa4664ebc9db14525d3c19b49fbddc9e1c2e2893a67369826dc85536d363a4ede87da569aac0984decdfc0b796dd4923a829b78445631ba2e1616a270f85683d18925fd3&iv=0e16494cc79b6dac125747c67b2b976b" />
<meta name="Gadgets_getAdTag" content="formkey=924c514c504fa0b183aaaf6c2f22f11d396efc07575f32c377a0534b91a30aea0db1c514e8ca5197360e902973b65e9b36df6b9ace6043c26bcc2ac68a1d8b52e6fd15956ea7ff9d7d7d4d4817545c0b721443ea11d76cb3a5d8190b2c7215c0b80ae0ecc9fcc5a1012a36ef5a85f619&iv=7e5c0713ac9148523b8d60e6c580e3ba" />
<meta name="Gadgets_writeMessage" content="formkey=b1ddf17a8252674be13e2e31e4198a3a977fc994374af474267518232c84f126aedb84b9ecb42a60a237d0a6c96eac3aa8636c8f06329bf82176c0c16b9e88b1238ac7a866030d404e730a7dfa1c759f167d4ad82481c82259c3855519cef7a5884608aaab3983adfe1d559d01108998&iv=1b1c5b5f0d4515c07d7953cf67fa889f" />
<meta name="Gadgets_replyMessage" content="formkey=636b1356def289c71f313efe24304a4561c6f52a9561cd81c7ed18bb7c1b5f936f4bd7f29cc3f225ccab2dae91f687843ec6fa3f8b991e1e031ad5a6ee7147af744c60f47fee3ed3ce9209600cdbbc70b2b1a1f771a5aeaa39681ba7d7c62cebed17365e88ab6aa90ea9f19e7641045e&iv=9b4b5bfbcbfdf4b750626ffd27e19c40" />
<meta name="Gadgets_pinboardMessageDialog" content="formkey=bc8bd145d6c4ebf473ef2548d17b14da820cdfcc6935fc46848485fdc3ec7b7c11aebcb9ded5db72e7886e5471f57d9f9e8c3b4392b78b912844570c7be09a23587636434b9afa48000c312fe87e55d186fe48add73af795ec1261afe3f5c3d24aa158a33631b1e9d636be9684d7ab5163e0db817535810d44719e5417a4c21e&iv=150f85d3f26878925a327d99b40346e3" />
<meta name="Gadgets_pinboardMessage" content="formkey=b6d208e3b05a2a0885fd283a1cbd4bd298a6e1053dd8389fcddb0dbbf965d18f6a2a3b645ed8995ea329b3871d7e07649ee2f2356e0a2868397c8d50db39200d05c7d10c4fd575f27f144aae965a9669f45ac2daca70c1773d1d70b907fc2805563cf0801cdc945684c47cea6f986302&iv=b02e31cb91e5709419719f61203cf022" />
<meta name="Link_getEmbeddableGadgets" content="formkey=76f2ddc3ae94b24ff200cd099ae4c0adf93fbe775aa5d40904894e78a84da8e0726b4adb6bd7dfcdeec1a6ec075d95a3ed91fcf9610c32996fc42ccece073e0f4350ff6343cbede759187ff9bee80932c6bcf92d5b20cda95c6e0182918c2ae1aee6bdbcb767b898eae6b1b4d1ea63c8b2c844637bab714814e837b878aea8e0&iv=7efa455be536d511426d98ae12663177" />
<meta name="Link_getEmbedProviderView" content="formkey=e0e6bbd4057b3b251a3d2e1cc890eb0e09acc2d1d1cbfd92cbd7c1588c8ac96bb67ceaf4a9f40ec7e8e6ecbd52c79e41a2408646464d379a8e6409437c05f84ef857c882142a5946adc7c1554da6ba80df8470a10944ebb15fde7691623e044a1266ace239a05d3383fede02a1e11cad36ea26c88a3469dd3aa0be029bc10bb4&iv=42012ec94f0098826db211d8989f3837" />
<meta name="Link_getFlashUploadForm" content="formkey=34d61d8bb615604b9c9ae5e3f333e05f54e94c343391dae6d855305800ef29c56d896ef9b23adc68b0551f50af91263d69e283a5d1ea326ef4e0b151dafa9cb3560512ce7b95cdda416ba078050da9b4c1c9de70529874e18954c1b2af1077c7580c7559ad852158a8c18174522b5a8ffa72cf6ce140df2e0883c6522ece140b&iv=0773f2cff4f789981152c10010546760" />
<meta name="Groups_ChooseGroup" content="formkey=ffccbecd0420e6f9147ccf7484e03b2dc02b5487672c1be7ea7ddb8bdb28a7acedec26a0c2aa9e5b419d3f637b54a0c87f6873762447fe61fbb20eec8302261b9cb1f4bd0ee0ee2e0ee8a9508b40f7fbe6d76d735da1fa98ea934edfd19787065cf7f8b65cb9f8828a82446c71f204ba&iv=03f8f8a1b6f773eba8735325059f142c" />
<meta name="Profile_ChooseProfile" content="formkey=c825a64acfba1999ad43b87f24c0d70fd30990d23db380bc33780e19b4b2aac3b8aeae9e3960683734005941cb71d181427326ddf25a0840944d6552977bee38c69e8a0210c485a4d6ffc2881f38f3de619f575a5498d98791fcb179d0a1d4879294c2bb60cb4ef9dc525e223dca2578&iv=8bc6125fbf9d6befa872651060134d60" />
<meta name="Pinboard_ChooseVisual" content="formkey=621af4ec6ac020f3ad3f0e482f7fae693a26803e63b40eb08fa718f63a7a4b797aeea39f652cb59a5a5e53c4dfdd2a854a0551e0df89273c0b48344af6452ece2036ff6cce34b8fbeb33d3e58ee9ab8ee4a1e7dd1234dd672ea4de4c1f9884baaf8811ac3e9150ecbf622394733b400d250b15dec38c9f96088baf73cac0efdd&iv=471e58e61b5eec79a7f405bb4c916726" />
<meta name="Gadgets_getStaticKey" content="formkey=7eee9345b9b0b2b77949cbfd2f594efe78f1c7844d785b3fe6311933198822a0361366f4740c8420584c5d102afdf65c168a50d2e82672975249c2d8558a7705472aed36d9137d30dce96961f1731bcb7507b2373bbe527f1d70c04c02bbb727b57d1f9421ebee378db2e1456a94f3a3&iv=37731011e748fd8888601c97b6a831a6" />
<meta name="Gadgets_feedEntryDialog" content="formkey=3389fc5df7cea6441c0115a5917dff8d9cc4b52094f57d1a037299d0acf7e3e76d1ef525f5e5e17f9be53e6a87daed4cc5cf4f43a938eee44533eacf59cab32ecdc435f014c06fa7f28cd80c6a5a2c21a94dcf8fae5de62d9e7c9a834320bae5373d33ae6e14268920c5ffe3c9145113f2620a37f48c868096b8d235c4559194&iv=3c97bf944fa03c6784dc790b34840678" />
<meta name="Gadgets_feedEntry" content="formkey=6184ff90cf40b380ed5a21e64119d891f58c6e68be88d7acf679066719181d174f760119088ba8f78768a48d44715da68f46ff055c27fd55494fb01dfde668d88892770a2baef1359ece4ee02265843033dc39a9beeb84e7e03c22c36b5b4f91862bd990d2bbc4f2b1adf2d8eaac272b&iv=e59b436c63ce5b52e513535d8af240f1" />
<meta name="Gadgets_getPermissions" content="formkey=cdd5e5ac365ca3bf92747e118dcb1e824a80efba9b8b5a36b3a96068d4646021eb6b21b85064c7a29fc943dd9e530b3d514e4d9746c6555c23f2e5bf5ce410a7b6f53c0d8207778d3aa288ca4f3bfccdfb742676c8d7e6544f4b85840b0ea2865d0bc12338dbc3ead25be27efad69fce&iv=2c06e93ac9527a3403d9f79a541a2049" />
<meta name="Link_postFeedEntry" content="formkey=50fa7fdeb0e264dc9ff1bb80892730376b2d78d59286304a8dc62a6d1f6fd624460d7d2ee8be9e1aa75d9593a1a6e6d9d032d750e2aa79c8ec2321566d543197f811c30ab822b1aa59091290af938f82e5594a9bead151be9067190732c3b0d94f7d89fe7738f627e2c63eec3d2db33e&iv=cb79a08293053f26a070ca4d89b6f82b" />
<meta name="Link_sendMessage" content="formkey=3e31fa5c52305ee649ac815853c18060d18ff16615990cc34de2c0dcdfb4222f8eccd4dd5bc0735d633390e5520652db9860d483ab09688dd78da581da399b7e1b22d6f4fe0faa8135abe811bc7e50ab369a6ceb48e7933ddef371f07f8644be&iv=cadd909eb08ab376c061fa8c5d2194c1" />
<meta name="Badges_postBadge" content="formkey=e94d9dfc3b470469a16f891223bf81dd788a9911cc1d3309bac2c4b735138581144e69e3d6b7ee276c7716bbb1d3152d6b499fb71604e9587da69f1b99363540024a1e816c824c4d3de19a1a45efdbac2d19dc6e9eefd6ee93fb14a47355da03ce0f5d555d0453c7b0f625db08e46341&iv=e2539520871c7e048779c460d854958a" />
<meta name="Profile_getUpdateImageForm" content="formkey=955f22e314cbdf58de553f7f1f5e35ceb68725682f1d8562e002448e9e7591762584c9cbd5b4a4acfe91b00ac5ec7864e80dcb899f9814c3fc1094b1eefd07ad01d9842766e3a1d8502912baacaef692ba6594db222f05b301d4274dd94a85c7ecb100e5c7b25ed83f5f65bc30158ff882a409a2d81a14e13d50fdc4b423ab0c&iv=21c17695f6980457e678a270b741742a" />
<meta name="Profile_updateImage" content="formkey=412513b80b01c947c5110cdab7870e17333aad59ef19f53776d7f61a0b4fa241e134bb44e953897dcb1c113ae3195f42228a501fdeca58a58f802c4f4caa4c7fce4036aafe4254bc2b319e66874db8ea83958cb0fcd989e7312c7cd3daf0949c204f3455ba4fd769d0d95dd21385dd1e3d872f8c2386f0ff21a7a0def4ea9e8a&iv=d4f7bba9146813f2e0f674db6ef9160d" />
<meta name="AccuseIgnore_accusePinboardEntry" content="formkey=85b3374a96ef008b105cf52c0ef4f5ddb4b5f4c258ad28c6eb078a87beb55d2e3e1f64b3d3dc6ff6a845616078f5c4abff915c39bc47e2bbb5222dd7a9e8961726374146d161848876bf9049649b9f447d5411efcb3bee1d3d62b73168e3cf2cb0be01f2fac8df310a780cc4765f3f2ea48e5978e5991fe05a967577fd60b291&iv=a7c1ed999f2c220a348905dca28c3931" />
<meta name="Pinboard_refresh" content="formkey=5179d8ff66e52f422f8fa91ad61f542e708e6945f8fa5b045711bda7a518474fcdd94207db4266b3ffc4768ae3b4033bcf4b89fa5b6d39346af1d3725866e8a54a79ad873e9d4528f223476f0eee77d0f3fa97a77b7231d38932b0b4d327aa8adb6c0be04f02bd2d11dbc45d01f5b260&iv=199f31e6ca392a2124c10e30e016bb05" />
<meta name="Pinboard_delete" content="formkey=9a8fdcee80dfa11192e828defd804f050c99154b895322fc375864a298f23e1ee5f91ee6789b795d6207bb5f556d410568c9333a85f57fe4973b5b7be4a30761f962968e206d0a62c1391381196dfdb687730500ac22caa2b16aeccba2afe557e9eb8878b8af67389df269d76e8d9803&iv=9dab9f9804dda9693d7d463248bb2c6b" />
<meta name="Chat_token" content="formkey=cca81c658896bcbad9b62822021b721eafef55d1a4f516cb12c817875a6a96b18e81a3471125e61181a612ba45f395a17e65bab41913240f138278de013868283cb08b3ee155b42e1c95b5309e81fe27e660dadd4b91a4439833d796689d234d288af9878ea7be196fa947703430da19&iv=876c5e1c53bde96bf2b040d08c7ec25b" />
<meta name="Chat_setStatus" content="formkey=834bef959c28e306e990cdf1d06fcd58f09f8dae5226628a3a65531a3c08bfb31071e0b50cedade61850f923f29c83e09813c4a230961a0126d351102b250024dcb8cadf05d49402a38ff49c8f2220a17474dec3e568b8f03a48fc0f74fbae08902b1b803dbac81956a0993b90add176&iv=d5308a7991ddd9f8d9fb4f70bed0298b" />
<meta name="Friends_addFriendDialog" content="formkey=13b023cfc761bdc60a8f1124c312d67584508884aff6a7c16673db6cb0421514d6d415bf85e9fae0155ec91ddcd8012bf070082dbff1aa94aed622d8a7a4c387e7fedea3e4fde1cde564809d0239c2c5418ed917ebc2c6a4fda781fda9576605fb2ff6880ad913da6be0dbaf90f3e850&iv=bca21c311aafd1fd5b1313ef2062ae4e" />
<meta name="Friends_addFriend" content="formkey=aa2ea405afd18224ca2550ee9bd6fc0d75269469d21d5e37441861691edb6cb1c5a4161e45c6ca00289f0c89a5e25ee16507d50e96ce80768f68847bc733985768e46d9b5e78afc55898f931aeca2b24df18c53af9df8fefa4864859e9eb8863&iv=49a37ffacc4f6f53bc9078c2b67c7346" />
<meta name="Uservoice_feedbackDialog" content="formkey=23dae784a7d029db14aa25f4448f43f6e287d67949ed45909da45f56ec46bc3e7a4a4467b41f9ac8b6b6ddc7112d8efcfe672db5f1de8147cf81a20ee466924186a1c0107dda1be0ae41c268f040886b4563d8ff81699ea37e726f10faa97c0ec27ab03e12917444ce387cfe6d474b52&iv=8e3fd64881332b50197b7d1a1f69062f" />
<meta name="Polls_answerPoll" content="formkey=8f993c375c4402c966bc8fca93322d32dd67d0cfaebd6d74a3c6f6648e6a41d1ad2fec1d382177d2b0f5fc8d62ad5a1629265e417c368ea54b219b66135dc88ddc73d79ba79c75945e5cf0291b53b2a74e15c8c4f4d4b3c9461fc0ff7becc497121ed870c617e852a481a1d239ebf80b&iv=ca8cf99b43561c4788cbd7350e46bb4a" />
<meta name="Polls_diagramView" content="formkey=5ecc27bfc42bff4b7551103822fa5fbcb69fe95eb53c221a3835d2663e2fda9f495ea0db9691fb1977770d9fe987168edd2c49ca9dd33a9dad4d2eb45af0035fe4076874c76f1399f2d47231688c4d8a4c90b7ba00f88329964726554baca3621070bb70c57c6d30aed9fcfeebe1c636&iv=8969873fd9476891c53466751beaf600" />
<meta name="activeModules" content="Profile,Search,Login,StaticContent,Cooperations,Chat,Plauderkasten,Gadgets,Info,Ims,Friends,Advertising,Uservoice,Photos,Privacy,Blog,Messages,Gruscheln,Link,AccuseIgnore,NobleProfile,Microblog,Education,Work,Groups,Pinboard,VoApi,Badges" />
<meta name="pageletName" content="Profile.Profile" />
<link rel="shortcut icon" href="http://static.pe.meinvz.net/20110328-0/favicon.ico" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Base.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/AccuseIgnore.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Friends.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Education.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Work.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Gadgets.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Gadgets/Gadgets.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Vcard.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Groups.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Photos/PhotoUpload.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Photos/Photos.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Link.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Buschfunk.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Mod_Pinboard.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Profile.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/FestivalRss.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/ManageFriends.css" />
<meta property="og:title" content="Patricia Müller" /> <meta property="og:image" content="http%3A%2F%2Fimg-p3.pe.imagevz.net%2Fprofile2%2F21%2F67%2Fb2ac7a2b9c2fbb10ddb81d46c694%2F1-1c6178cadc937622-s.jpg" />
<script type="text/javascript" src="http://static.pe.meinvz.net/20110328-0/Js/build/resource-core.js"></script>
<script type="text/javascript">
//<![CDATA[
var brs = navigator.userAgent.toLowerCase();
function Adition_BrowserId() {if (brs.search(/msie\s7/) != -1) {return 9;} else if (brs.search(/msie\s8/) != -1) {return 10;} else if (brs.search(/chrome\//) != -1) {return 11;} else if (brs.search(/safari/) != -1) {return 8;} else if (brs.search(/opera/) != -1) {return 7;} else if (brs.search(/konqueror/) != -1) {return 8;} else if (brs.search(/msie\s6/) != -1) {return 3;} else if (brs.search(/msie\s5/) != -1) {return 2;} else if (brs.search(/msie\s4/) != -1) {return 1;} else if (brs.search(/netscape6/) != -1) { return 5;} else if (brs.search(/netscape\/(7\.\d*)/) != -1) {return 5;} else if (brs.search(/netscape4/) != -1) {return 4;} else if ((brs.search(/gecko\//) != -1)) {return 6;} else if ( (brs.search(/mozilla\/(4.\d*)/) != -1) && (brs.search(/msie\s(\d+(\.?\d)*)/) == -1) ) {return 4;} else {return -1;}}
function Adition_OSId() {var os; if ( (brs.search(/windows/) !=-1) || ((brs.search(/win9\d{1}/) !=-1)) ) {if (brs.search(/nt\s5\.1/) != -1) {os=3;} else if (brs.search(/nt\s5\.0/) != -1) {os=2;} else if (brs.search(/nt\s5\.2/) != -1) {os=8;} else if (brs.search(/nt\s6\.0/) != -1) {os=9;} else if (brs.search(/nt\s6\.1/) != -1) {os=10;} else if ( (brs.search(/win98/) != -1) || (brs.search(/windows\s98/)!= -1 ) ) {os=1;} else if (brs.search(/windows\sme/) != -1) {os=1;} else if ( (brs.search(/windows\s95/) != -1) || (brs.search(/win95/)!= -1 ) ) {os=1;} else if ( (brs.search(/nt\s4\.0/) != -1) || (brs.search(/nt4\.0/) ) != -1) {os=4;}return os;} else if (brs.search(/linux/) !=-1) {return 6;} else if (brs.search(/mac\sos\sx/) !=-1) {return 5;} else if ( (brs.search(/macintosh/) !=-1) || (brs.search(/mac\x5fpowerpc/) != -1) ) {return 5;} else if ( (brs.search(/unix/) !=-1) || (brs.search(/x11/) != -1 ) ) {return 7;} else {return -1;}}
function Adition_ResId() {if(screen.width==640 && screen.height==480) {return 1;} else if(screen.width==800 && screen.height==600) {return 2;} else if(screen.width==1024 && screen.height==768) {return 3;} else if(screen.width==1152 && screen.height==864) {return 4;} else if(screen.width==1280 && screen.height==1024) {return 5;} else if(screen.width==1600 && screen.height==1200) {return 6;} else if(screen.width==1280 && screen.height==960) {return 7;} else if(screen.width==1400 && screen.height==1050) {return 8;} else if(screen.width==1280 && screen.height==768) {return 9;} else if(screen.width==1280 && screen.height==800) {return 10;} else if(screen.width==1440 && screen.height==900) {return 11;} else if(screen.width==1680 && screen.height==1050) {return 12;} else if(screen.width==1920 && screen.height==1200) {return 13;} return -1;}
function Adition_Flash() {var f="",n=navigator;if (n.plugins && n.plugins.length) {for (var ii=0;ii<n.plugins.length;ii++) {if (n.plugins[ii].name.indexOf('Shockwave Flash')!=-1) {f=n.plugins[ii].description.split('Shockwave Flash ')[1];i=f.indexOf('.');f=f.substr(0,i);break;}}} else if (window.ActiveXObject) {for (var ii=10;ii>=2;ii--) {try {var fl=eval("new ActiveXObject('ShockwaveFlash.ShockwaveFlash."+ii+"');");if (fl) { f=ii; break; }}catch(e) {}}} return f;}; function Adition_Trel() {return '&prf[iug]=14414616644375930622&prf[fhj]=001&iqh=14414616644375930622&ipt=0';};
var ad_wid = Math.round(Math.random()*2000000000);var ad_count = 0;var ref;try{ref=escape(document.referrer);}catch(e){ref='-'}var os;try{os=Adition_OSId();}catch(e){os=''}var browser;try{browser=Adition_BrowserId();}catch(e){browser=''}var screen_res;try{screen_res=Adition_ResId();}catch(e){screen_res=''}var fvers;try{fvers=Adition_Flash();}catch(e){fvers=''} var adition_tag_set=false;
//]]>
</script> <script type="text/javascript">
//<![CDATA[
var requestToken = "WphF-rm2VK6viLOcH_d0x4O6PRV7jzVGc20QXg76fTQ";
//]]>
</script>
</head>
<!-- Du liest Code? Lies auch: http://kurz.nu/r/20 -->
<body class="avz gecko gecko20">
<div id="Grid-Wrapper">
<div id="Grid-Advertising-Top">
<div id="ad728x90">
<script type="text/javascript">/* <![CDATA[ */document.write('<scr'+'ipt type="text/javascript" src="http://studivz.adfarm1.adition.com/banner?wpt=J&sid=50474&wi='+ad_wid+'&ac='+(++ad_count)+'&ref='+ref+'&os='+os+'&browser='+browser+'&screen_res='+screen_res+'&fvers='+fvers+'&prf[iug]=14414616644375930622&prf[fhj]=001&iqh=14414616644375930622&ipt=0&mdev=100"></scr'+'ipt>');/* ]]> */</script></div><script type="text/javascript" src="http://static.pe.meinvz.net/20110328-0/Js/meetrics/adam100111.js"></script> </div>
<div id="Grid-Advertising-Right">
</div>
<div id="Grid-Page">
<div id="Grid-Page-Left">
<div id="Logo">
<a href="/Home" rel="nofollow" title="zur Startseite">
<img src="http://static.pe.meinvz.net/20110328-0/Img/logo.png" alt="Logo meinVz, Link zur Startseite" />
</a>
</div>
<div id="Quicksearch">
<form id="QuickFormSearch" method="post" action="/Search/QuickSearch" class="obj-quicksearch">
<fieldset>
<div id="resultboxAutosuggest"></div>
<div class="labelinside">
<label for="searchfieldAutosuggest">Suche</label>
<input type="text" name="name" id="searchfieldAutosuggest"/>
</div>
<input type="hidden" name="quickSearch" value="1" />
<input type="hidden" id="disableAutosuggest" value="0" />
<input type="hidden" name="formkey" value="2a9375bd1571ee8f93d90ff84c62027e332d580c5d77c8a70982da4cfec337eae7701e54f35df0ce2c8d0886ff294d9b60a8dcea8f7b1b9736fb3da761727f81e93947158b971a938187727360988b22fa9ba852490cb946d8b82a8e104ff2424f2552ce6c2c46c5e893eead8317f6f3" />
<input type="hidden" name="iv" value="4cede1bdd9a7e62ed209766a2ab75d10" />
</fieldset>
</form>
</div>
<ul id="Grid-Navigation-Main" class="obj-linklist">
<li><a href="/Home/tid/101" rel="nofollow" title="Start">Start</a></li> <li class="clearFix"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsajYPqMm4gHSnUJiB7MaBIo/tid/102" class="left" rel="nofollow" title="Meine Seite">Meine Seite</a> <a href="/Profile/EditGeneral/tid/109" class="right" rel="nofollow" title="bearbeiten">bearbeiten</a></li> <li><a href="/Friends/All/8tdVJyeco54Sp6cuBo1qsajYPqMm4gHSnUJiB7MaBIo/tid/103" rel="nofollow" title="Meine Freunde">Meine Freunde</a></li> <li><a href="/Photos/8tdVJyeco54Sp6cuBo1qsajYPqMm4gHSnUJiB7MaBIo/tid/104" rel="nofollow" title="Meine Fotos">Meine Fotos</a></li> <li><a href="/Groups/tid/105" rel="nofollow" title="Meine Gruppen">Meine Gruppen</a></li> <li><a href="/Gadgets/Overview" rel="nofollow" title="Meine Apps und Spiele">Meine Apps und Spiele</a></li> <li><a href="/Messages/tid/106" class="Navi-Messages-Link" rel="nofollow" title="Nachrichtendienst">Nachrichtendienst <span id="messages-navigationlink-unread" data-unread="0">(0)</span></a></li> <li><a href="/Account/Account/tid/107" rel="nofollow" title="Mein Account">Mein Account</a></li> <li><a href="/Privacy/Settings/tid/108" rel="nofollow" title="Privatsphäre">Privatsphäre</a></li> </ul>
<div id="LeftsideBox" class="box rounded simple-ext">
<div class="innerbox">
<p>
<a href="http://www.meinvz.net/C/2637">Ohne Seepferdchen</a> kommste heut nicht mehr weit.</p> </div>
</div>
</div>
<div id="Grid-Page-Center">
<div id="Grid-Page-Center-Top">
<h1>Meinverzeichnis / meinVZ</h1>
<ul id="Grid-Page-Center-Top-Navigation">
<li><a href="/Language/en" rel="nofollow" title="English">English</a></li>
<li><a href="/Search/SearchGlobal/rmC/1/tid/121" rel="nofollow" title="Suche">Suche</a></li>
<li><a href="/Invitation/Invitation//tid/122" rel="nofollow" title="Einladen">Einladen</a></li>
<li><a href="/l/help" rel="nofollow" title="Hilfe">Hilfe</a></li>
<li><a href="/l/mobile_info" title="Handy">Handy</a></li>
<li><a href="http://blog.meinvz.net" rel="nofollow" target="_blank" title="Blog">Blog</a></li>
<li><a href="/Logout/2b069b333aca8e4d37fc82f3eed18f15/tid/127" class="logout" rel="nofollow" title="Raus hier">Raus hier</a></li>
</ul>
</div>
<div id="Grid-Page-Center-Header">
<div id="Grid-Page-Center-Header-Menu">
<input type="hidden" id="Chat-Header-PrivacyUrl" value="/Privacy" />
<input type="hidden" id="Chat-Header-PrivacyUrlSealed" value="/Privacy/Seal" />
<input type="hidden" id="Chat-WindowUrl" value="/Plauderkasten" />
<div id="Chat_Header" class="">
<div id="mini-chat">
<span id="chat-active" style="display:block">
<span id="set-my-status" class="">
<span id="set-my-status-icon" class="my-status-offline" style=""></span>
<span id="my-status-selector" style="display:none">
<p id="my-status-selector-online"><span class="set-my-status-online"></span>eingeschaltet</p>
<p id="my-status-selector-away"><span class="set-my-status-away"></span>abwesend</p>
<p id="my-status-selector-offline" class="active"><span class="set-my-status-offline"></span>ausgeschaltet</p>
</span>
</span>
<a id="header-text" href="JavaScript:void(0)">
<span id="online-status-text">
Plauderkasten </span>
(<span class="online-users-counter">0</span>)
</a>
</span>
<span class="target-amount-unread twodigit" style="display:none">
<span class="target-num">
</span>
</span>
<span class="target-amount-calls twodigit" style="display:none">
<span class="target-num">
</span>
</span>
<div id="message-sound"></div>
</div>
<div id="Sound-Player-New-Message" style="height: 0px; overflow: hidden;"></div>
<div id="Sound-Player-Incoming-AV" style="height: 0px; overflow: hidden;"></div>
</div>
<!-- Start Lovely Code for Mini Chat Notifications -->
<div id="notification-new-message" style="display: none;">
<div class="notification-text">
<span class="target-username">Vorname Nachname</span> hat Dir eine Nachricht geschrieben. </div>
<input class="button" type="button" value=">Lesen" onclick="javascript:openchattab()" />
<input class="button" type="button" value=">Ignorieren" onclick="javascript:closenotification()" />
<div class="clear"></div>
</div>
<!-- End Lovely Code for Mini Chat Notifications -->
<div id="gadget-menu-header">
<ul>
<li>
<script type="text/javascript">
var popupdata = popupdata || {};
popupdata.href = "/Gadgets/Popup/489";
</script>
<a href="javascript:;" class="gadget-featured-link-popup">
Röhre <img src="http://static.pe.meinvz.net/20110328-0/Img/tv.png" alt="Röhre"/>
</a>
</li>
</ul>
</div> </div>
<h1 class="ellipsis" title="Patricia Müllers Seite (Eilenburg)">Patricia Müllers Seite (Eilenburg)</h1> </div>
<div id="Grid-Page-Center-Content">
<div id="shoutboxJs" class="obj-shoutbox hidden">
<div>
<p id="shoutboxJsSuccess" class="success hidden"></p>
<p id="shoutboxJsError" class="error hidden"></p>
</div>
<div class="close">
<a rel="nofollow" href="javascript:;"></a>
</div>
</div>
<div id="Mod-Profile-View" >
<div id="profileLeft" class="obj-box onethird">
<img src="http://img-a3.pe.imagevz.net/profile2/21/67/b2ac7a2b9c2fbb10ddb81d46c694/1-1c6178cadc937622.jpg" class="obj-profileImage" id="profileImage" alt="Patricia Müller" />
<ul class="obj-linklist">
<li><a href="/Friends/All/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs" >Alle Freunde von Patricia</a></li><li><a href="/Messages/WriteMessage/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs" >Patricia eine Nachricht schicken</a></li><li><a href="/Gruscheln/DialogGruscheln/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs" >Patricia gruscheln</a></li><li class="user-showlink"><a href="/Link/User/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs" >Patricia Freunden zeigen</a></li><li>
<a id="accuseIgnoreLink" href="/AccuseIgnore/AccuseIgnore/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs">
Patricia melden / ignorieren <input type="hidden" id="accusedUserId" value="8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs" />
</a>
</li> </ul>
<div id="MicroBlog" class="obj-innerbox hidden">
<h2>Letzter Funkspruch</h2>
<div id="microblogContent" >
<span class="microblog-guid hidden">8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs</span>
<span class="microblog-ownguid hidden">8tdVJyeco54Sp6cuBo1qsajYPqMm4gHSnUJiB7MaBIo</span>
<p class="microblogHistory"></p>
<div class="microblogMeta no-float">
</div>
</div>
<input type="hidden" id="MicroBlog-Emoticons" value="{":*":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_21.gif",":-*":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_21.gif","x-(":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_13.gif",":-&#38;":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_12.gif",":-s":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_10.gif",":-o":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_9.gif",":-x":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_8.gif",":oops:":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_7.gif",":-p":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_5.gif",":-((":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_6.gif",":-(":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_4.gif",";-)":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_3.gif",":-D":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_2.gif",":-)":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_1.gif",":)p":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_14.gif",":)":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_1.gif",":D":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_2.gif",";)":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_3.gif",":((":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_6.gif",":(":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_4.gif",":p":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_5.gif",":\">":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_7.gif",":x":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_8.gif",":o":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_9.gif",":s":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_10.gif","|-)":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_11.gif",":&#38;":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_12.gif","x(":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_13.gif",":h\u00e4:":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_15.gif",":vz:":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/mVZ_Emoticon_15.gif","8-x":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_17.gif",":hmm:":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_18.gif",":emo:":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_19.gif",":yo:":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_20.gif",":kuss:":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_21.gif",":alien:":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_22.gif","$%&#38;1521":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_12.gif","$%&#38;1747":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_13.gif","$%&#38;1853":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_14.gif","$%&#38;1897":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_15.gif","$%&#38;1899":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/mVZ_Emoticon_15.gif","$%&#38;1903":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_16.gif","$%&#38;2189":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_17.gif","$%&#38;2276":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_18.gif","$%&#38;2376":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_19.gif","$%&#38;2454":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_20.gif","$%&#38;2365":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_21.gif","$%&#38;2471":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_22.gif","$%&#38;2498":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_23.gif","$%&#38;2571":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_24.gif","$%&#38;2588":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_25.gif","$%&#38;3333":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_26.gif","$%&#38;4444":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_27.gif","$%&#38;4578":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_28.gif","$%&#38;5555":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_29.gif","$%&#38;5783":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_30.gif","$%&#38;5912":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_31.gif","$%&#38;6173":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_32.gif","$%&#38;6262":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_33.gif","$%&#38;6398":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_34.gif","$%&#38;7834":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_35.gif","$%&#38;7867":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_36.gif","$%&#38;7912":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_37.gif","$%&#38;8121":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_38.gif","*Prost*":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=68701&kid=67863&ts=1301488298","*prost*":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=68701&kid=67863&ts=1301488298","$%&#38;11":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_11.gif","$%&#38;10":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_10.gif","$%&#38;1":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_1.gif","$%&#38;2":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_2.gif","$%&#38;3":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_3.gif","$%&#38;4":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_4.gif","$%&#38;5":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_5.gif","$%&#38;6":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_6.gif","$%&#38;7":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_7.gif","$%&#38;8":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_8.gif","$%&#38;9":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_9.gif"}"/>
<input type="hidden" id="MicroBlog-Emoticon-Links" value="{"*Prost*":"http:\/\/studivz.adfarm1.adition.com\/redi?sid=68701&kid=67863&ts=1301488298&clickurl=http:\/\/www.studivz.net\/l\/krombacher\/2","*prost*":"http:\/\/studivz.adfarm1.adition.com\/redi?sid=68701&kid=67863&ts=1301488298&clickurl=http:\/\/www.studivz.net\/l\/krombacher\/2"}"/>
</div>
<div class="obj-innerbox">
<h2>Gemeinsame Freunde</h2>
<div class="obj-subbar">
Du hast <a href="/Friends/Common/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs">52 gemeinsame Freunde</a> mit Patricia. </div>
<ul class="obj-thumbnaillist">
<li>
<div class="imageContainer"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsaLH2VjNPN1EFDNgU1Z-hrk"><img src="http://img-p2.pe.imagevz.net/profile1/04/0b/71c16d6ed519ea2be8cb7378867c/1-8a2c92ddcd73104b-s.jpg" alt="Tobi Wan Kenobi"/></a></div>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsaLH2VjNPN1EFDNgU1Z-hrk">Tobi Wan Kenobi</a></div>
</li>
<li>
<div class="imageContainer"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsXHF9X1Ci41mbDCjBjO78x4"><img src="http://img-p2.pe.imagevz.net/profile1/78/48/82bfba8ffbe4abfd8ac7c6771ca9/1-7e7067dc0215c7eb-s.jpg" alt="David Eckler"/></a></div>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsXHF9X1Ci41mbDCjBjO78x4">David Eckler</a></div>
</li>
<li>
<div class="imageContainer"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsY5evW-9FWNNA281TgoyrdE"><img src="http://img-p2.pe.imagevz.net/profile1/21/86/0f3dbdd69a40fdf19a47d56d41e1/1-63604fe3a8f9377b-s.jpg" alt="Anja Lieder"/></a></div>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsY5evW-9FWNNA281TgoyrdE">Anja Lieder</a></div>
</li>
</ul>
</div><div class="obj-innerbox">
<h2>Freunde (gleiche Region)</h2>
<div class="obj-subbar">
Patricia hat <a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/48884">40 Freunde</a> in der Region Eilenburg. </div>
<ul class="obj-thumbnaillist">
<li>
<a href="/Profile/8tdVJyeco54Sp6cuBo1qsdtYvULBLGCcrCaKKJzmZoc"><img src="http://img-p5.pe.imagevz.net/profile2/76/97/7241c0a40ea47c89495a9053315d/1-7d7112a81068f8e4-s.jpg" alt="Manuela Haberkorn"/></a>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsdtYvULBLGCcrCaKKJzmZoc">Manuela Haberkorn</a></div>
</li>
<li>
<a href="/Profile/8tdVJyeco54Sp6cuBo1qsTDdDixKtoglOsq-bOMiVAU"><img src="http://img-p3.pe.imagevz.net/profile1/69/51/326f2ecb7d60ac41f502bbae3bdb/1-3d0dde540296bf8a-s.jpg" alt="Daniel Schäfer"/></a>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsTDdDixKtoglOsq-bOMiVAU">Daniel Schäfer</a></div>
</li>
<li>
<a href="/Profile/8tdVJyeco54Sp6cuBo1qsThl4Es_Mtvfatp7TL47UDA"><img src="http://img-p2.pe.imagevz.net/profile1/48/27/0fdf70ea63f0048148658c92cdfe/1-f76ecf4d974167ff-s.jpg" alt="â¥Ú¿Ú°Û£Â«à² nIcOlE aKa De StRuPpI â¥Ú¿Ú°Û£Â«à²"/></a>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsThl4Es_Mtvfatp7TL47UDA">â¥Ú¿Ú°Û£Â«à² nIcOlE aKa De StRuPpI â¥Ú¿Ú°Û£Â«à²</a></div>
</li>
<li>
<a href="/Profile/8tdVJyeco54Sp6cuBo1qscEEPpIqiZqnVRVg34f3xs0"><img src="http://img-p1.pe.imagevz.net/profile1/b8/02/486605428e578b22b77369ed56bb/1-0a8d236ab8ed219f-s.jpg" alt="Stefanie Heinke"/></a>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qscEEPpIqiZqnVRVg34f3xs0">Stefanie Heinke</a></div>
</li>
<li>
<a href="/Profile/8tdVJyeco54Sp6cuBo1qsa_GIQQMhnGNar6czlDl6WA"><img src="http://img-p4.pe.imagevz.net/profile1/92/16/3410c2c3d51e1a692515507efd43/1-248add2b3c407097-s.jpg" alt="Katrin Lenz"/></a>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsa_GIQQMhnGNar6czlDl6WA">Katrin Lenz</a></div>
</li>
<li>
<a href="/Profile/8tdVJyeco54Sp6cuBo1qsf2x5UBL1y2zXeLdhR8tymY"><img src="http://img-p1.pe.imagevz.net/profile2/18/92/3a4c44d4d5d94618547eda4bfc00/1-a61db3942e104dcf-s.jpg" alt="Antje Sander"/></a>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsf2x5UBL1y2zXeLdhR8tymY">Antje Sander</a></div>
</li>
</ul>
</div><div class="obj-innerbox">
<h2>Freunde (andere Region)</h2>
<div class="obj-subbar">
Patricia hat <a href="/Friends/Other/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs">38 Freunde</a> in ... </div>
<ul class="uniList float-left">
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/3716">GroÃ-Gerau</a> (1)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/3771">Esslingen</a> (3)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/3825">Miesbach</a> (1)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/3959">Leipzig</a> (12)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/3960">Delitzsch</a> (12)
</li>
</ul>
<ul class="uniList float-left">
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/3962">Leipziger Land</a> (5)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/3964">Torgau-Oschatz</a> (2)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/4018">Basel-Landschaft</a> (1)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/48985">Torgau</a> (1)
</li>
</ul>
</div><div class="obj-innerbox">
<h2>Freunde auf studiVZ</h2>
<div class="obj-subbar">
Patricia hat <a href="/Friends/Platform/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/1">23 Freunde</a> an ... </div>
<ul class="uniList floatL">
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/159/1">Uni Leipzig</a> (10)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/160/1">HTWK Leipzig</a> (6)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/295/1">HHL Leipzig</a> (1)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/368/1">Universität Zürich</a> (1)
</li>
</ul>
<ul class="uniList floatL">
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/627/1">BA Leipzig</a> (2)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/1606/1">DHfPG Leipzig</a> (2)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/2642/1">Diploma Leipzig</a> (1)
</li>
</ul>
</div>
</div>
<div id="profileRight" class="obj-box twothird">
<div id="Friends-Connection" class="obj-innerbox friendsColumn">
<h2>Verbindung</h2>
<ul class="obj-thumbnaillist">
<li>
<a href="/Profile/8tdVJyeco54Sp6cuBo1qsajYPqMm4gHSnUJiB7MaBIo"><img src="http://img-p2.pe.imagevz.net/profile1/91/2a/3a39897272b3606c147ebc52df09/1-38f1d96d822ff36b-s.jpg" alt="Schramme .."/></a>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsajYPqMm4gHSnUJiB7MaBIo">Schramme ..</a></div>
</li>
<li class="last">
<a href="/Profile/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs"><img src="http://img-p3.pe.imagevz.net/profile2/21/67/b2ac7a2b9c2fbb10ddb81d46c694/1-1c6178cadc937622-s.jpg" alt="Patricia Müller"/></a>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs">Patricia Müller</a></div>
</li>
</ul>
</div>
<div id="Profile_InformationSnipplet" class="obj-innerbox">
<h2>Information</h2>
<div id="P" class="accountStatusOnline clearFix hidden">
<br /><span id="status_8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs" class="mobilestatus">Plauderkasten ist an.</span>
</div>
<h3>Account</h3>
<dl id="Mod-Profile-Information-Account" class="obj-keyValueList" >
<dt>Name:</dt>
<dd>
Patricia Müller
</dd>
<dt>Verzeichnis:</dt>
<dd>
<img src="http://static.pe.meinvz.net/20110328-0/Img/Logos/mvzLogo15px.gif" alt="meinVZ"/>
</dd>
<dt>Mitglied seit:</dt>
<dd>25.01.2011</dd>
<dt>Letztes Update:</dt>
<dd>31.01.2011</dd>
</dl><h3>Allgemeines</h3>
<dl id="Mod-Profile-Information-General" class="obj-keyValueList">
<dt>Region:</dt>
<dd>
<a href="/Search/SearchSuper/platform/3/uni/48884/doSearch/1/rmC/1">Eilenburg</a> </dd>
<dt>Status:</dt>
<dd>im Berufsleben</dd>
<dt>Geschlecht:</dt>
<dd><a href="/Search/SearchSuper/gender/1/platform/3/doSearch/1/rmC/1">weiblich</a></dd>
<dt>Geburtstag:</dt>
<dd>
27.07. <a href="/Birthday" class="icon icon-calendar">Zum Kalender</a>
</dd>
</dl>
<h3>Persönliches</h3>
</div><div id="gadgets-list">
</div>
<div id="Mod-Groups-Snipplet" class="obj-innerbox">
<h2>Gruppen </h2>
<ul>
<li>
<a href="/Groups/Overview/104946e7f0460efd">ERZ10 Rote Jahne</a>
</li>
<li>
<a href="/Groups/Overview/85d1878aa2fcd4ec">ex-schiller-schule-schüler-eilenburg</a>
</li>
<li>
<a href="/Groups/Overview/a99fee2ca081b68e">Neulinge im VZ</a>
</li>
</ul>
</div><div id="Mod-Pinboard-Snipplet" class="obj-innerbox">
<h2>Pinnwand</h2>
<div class="obj-subbar">
<div class="obj-subbar-info">
Zeige 9 von <a href="/Pinboard/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/p/1">
9 Einträgen </a>
</div>
<div class="obj-subbar-actions">
<a href="javascript:;" name="showForm" class="showForm" >Etwas schreiben</a>
| <a href="/Pinboard/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/p/1">
Alle ansehen </a>
</div>
</div>
<div class="write-panel pinboard-write" style="display:none;">
<form action="" method="post">
<script type="text/javascript">
embedHidden = function() { return false;};
</script> <fieldset>
<div class="form-row">
<div class="hint hidden">Bitte schreib etwas.</div><label for="Pinboard_entry" class="floatL">Eintrag: </label><textarea id="Pinboard_entry" rows="6" cols="45" title="Bitte schreib etwas." name="entry"></textarea> </div>
<div id="Pinboard-Embed-Container" class="hint form-row"></div>
<div class="hint">
noch <span id="pinboardCharsCount"></span> Zeichen </div>
<input type="hidden" name="referrer" value="overview" />
<input type="hidden" name="userId" value="8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs" />
<div class="form-buttons">
<input class="button" type="submit" value="Abschicken" />
<input class="button" type="reset" value="Doch nicht" />
</div>
<input type="hidden" name="formkey" value="8bafddf482eedc492d479929c197f75234a3117d034b9ec2609b25a30208f616ea9e79ea94e46d52be0e91e405a097fe00e0ff2fb6fe220006ae151e00f7289d26946ac1262b5dab7d97825f45448b595c20f01501cd7fc82a89be5c1aaafd3d3548ec0ad49d8997a865ceee8a57b7de" />
<input type="hidden" name="iv" value="fdd1bc749d8638d8dca4a6cb7c614974" />
</fieldset>
<input type="hidden" id="emoticonArray" value="{"#alles-gute1#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100125_Pinnwandvisual_AllesGute.jpg","#danke1#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100123_Pinnwandvisual_Danke.jpg","#du-ich#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/visual-du-ich_2009.gif","#fit-wie-ein-turnschuh#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100208_Pinnwandvisual_GuteBesserung_2010_3_3.gif","#gib-mir-5#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100125_Pinnwandvisual_GibMir5.jpg","#glueckwunsch1#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100125_Pinnwandvisual_Glueckwunsch.jpg","#gruesse#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/allgemein\/101105_Single_Pinnwandvisual05.jpg","#gute-besserung1#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100208_Pinnwandvisual_GuteBesserung_2010_2_2.jpg","#hallo1#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/allgemein\/101105_Single_Pinnwandvisual04aVZsVZ.jpg","#herz1#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/herz.png","#heute-abend#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/allgemein\/101105_Single_Pinnwandvisuals10.png","#hut-ab1#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100125_Pinnwandvisual_HutAb.jpg","#ich-liebe-dich#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/liebe.gif","#knutscha#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/knutscha.gif","#liebe-regnen#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/regnen.png","#liebe-regnen1#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/regnen.png","#mag-dich1#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/allgemein\/101108_PV_Single08.png","#nie-wieder#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100208_Pinnwandvisual_NieWieder.jpg","#party#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/allgemein\/101108_PV_Single07.jpg","#schnell-auf-die-beine#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100208_Pinnwandvisual_GuteBesserung_2010_4.gif","#sei-nicht-boese#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100208_Pinnwandvisual_SeiNichtBoese.jpg","#sei-stolz#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100125_Pinnwandvisual_SeiStolz.jpg","#traum#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/allgemein\/101108_PV_Single02_2.png","#verzeihst-du-mir#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100123_Pinnwandvisual_Verzeihen.jpg","#viel-glueck1#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100125_Pinnwandvisual_VielGlueck.jpg","#wirklich-krank#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100208_Pinnwandvisual_GuteBesserung_2010_1_2.jpg","#wochenende#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/allgemein\/101008_PV_Single04.jpg","#aktiv#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64545&kid=112203&bid=324348&ts=1301517583","#aok-aktiv-strand#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64545&kid=112203&bid=324348&ts=1301517583","#aok-beauty-vote#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64545&kid=112252&bid=324725&ts=1301517583","#aok-chillout-strand#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64545&kid=112217&bid=324445&ts=1301517583","#aok-fun-strand#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64545&kid=112218&bid=324448&ts=1301517583","#aok-wellness-strand#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64545&kid=112240&bid=324699&ts=1301517583","#chillout#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64545&kid=112217&bid=324445&ts=1301517583","#woisttil#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=68340&kid=118669&bid=349721&ts=[timestamp]&ts=1301517583","#collbleiben#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64544&kid=89541&ts=1301517583","#colldrauf#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64544&kid=89553&ts=1301517583","#coolbleiben#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64544&kid=89541&ts=1301517583","#coolblieben#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64544&kid=89541&ts=1301517583","#cooldaruf#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64544&kid=89553&ts=1301517583","#cooldrauf#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64544&kid=89553&ts=1301517583","#herz-tanzt#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/flirten\/101105_Single_Pinnwandvisual03.jpg","#herzen#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/flirten\/101105_Single_Pinnwandvisual02.jpg","#kaffee#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/flirten\/101105_Single_Pinnwandvisual01.jpg","#mein-typ#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/flirten\/101105_Single_Pinnwandvisual7.jpg","#fruehlingsgruesse#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/100317_Pinnwandvisual_Herzblume.gif","#hurra#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/100317_Pinnwandvisual_Schmetterlinge.gif","#pusteblume#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/100317_Pinnwandvisual_Herzwolke.gif","#pusteblume1#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/100317_Pinnwandvisual_Pusteblume.gif","#sonne#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/100317_Pinnwandvisual_Herzwolke.gif","#zauberhaft#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/100317_Pinnwandvisual_Vogel.gif","#baby1#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/geburt\/100611_Geburt_Pinnwandvisuals01.jpg","#baby2#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/geburt\/100611_Geburt_Pinnwandvisuals03.jpg","#fratz#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/geburt\/100611_Geburt_Pinnwandvisuals05.jpg","#lieferzeit#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/geburt\/100611_Geburt_Pinnwandvisuals02.jpg","#sonnenschein#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/geburt\/100611_Geburt_Pinnwandvisuals04.jpg","#geb-dick#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/visual-geburtstag_2009_6.gif","#geb-geschenke#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/visual-geburtstag_2009_10.jpg","#geb-hase#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/visual-geburtstag_2009_3.gif","#geb-hund#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/visual-geburtstag_2009_2.jpg","#geb-kuchen#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/visual-geburtstag_2009_13.jpg","#geb-lumpi#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/visual-geburtstag_2009_5_neu.jpg","#geb-party#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/visual-geburtstag_2009_9.jpg","#geb-rente#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/visual-geburtstag_2009_4.gif","#geb-torte#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/visual-geburtstag_2009_11.jpg","#got2b#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=68701&kid=67874&ts=1301517583","#got2b-vote#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=68701&kid=70714&ts=1301517583","#got2be#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=68701&kid=67874&ts=1301517583","#got2be-vote#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=68701&kid=70714&ts=1301517583","#got2bevote#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=68701&kid=70714&ts=1301517583",
Untitled JavaScript (30-Mar @ 22:29)
Syntax Highlighted Code
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
- <head>
- <meta http-equiv="content-type" content="text/html; charset=utf-8" />
- [582 more lines...]
Plain Code
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta http-equiv="imagetoolbar" content="no" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<script type="text/javascript">
//<![CDATA[
var PHX_PAGELOAD_START = new Date().getTime();
document.cookie = "Pm=; path=/";
//]]>
</script>
<title>meinVZ | Patricia Müller</title>
<meta name="description" content="meinVZ ist eine kostenlose Kommunikationsplattform. Jeder Nutzer kann hier seine persönlichen Netzwerke pflegen, mit Freunden und Bekannten in Kontakt bleiben und neue Verbindungen herstellen - auch zu den Mitgliedern von studiVZ. Das Netzwerk aus studiVZ und meinVZ ist die gröÃte und aktivste Online-Community Deutschlands." />
<meta name="keywords" content="Studenten, students" />
<meta name="ajaxUrl" content="/Ajax" />
<meta name="platformId" content="Avz" />
<meta name="platformUrlOther" content="http://www.studivz.net" />
<meta name="staticServer" content="http://static.pe.meinvz.net/20110328-0" />
<meta name="oembedServer" content="" />
<meta name="noCacheFlag" content="20110328-0" />
<meta name="msapplication-task" content="name=Start;action-uri=http://www.meinvz.net/Home/;icon-uri=http://static.pe.meinvz.net/20110328-0/favicon.ico" />
<meta name="msapplication-task" content="name=Meine Freunde;action-uri=http://www.meinvz.net/Friends/;icon-uri=http://static.pe.meinvz.net/20110328-0/favicon.ico" />
<meta name="msapplication-task" content="name=Meine Fotos;action-uri=http://www.meinvz.net/Photos/Slideshow;icon-uri=http://static.pe.meinvz.net/20110328-0/favicon.ico" />
<meta name="msapplication-task" content="name=Meine Gruppen;action-uri=http://www.meinvz.net/Groups/;icon-uri=http://static.pe.meinvz.net/20110328-0/favicon.ico" />
<meta name="msapplication-task" content="name=Nachrichtendienst;action-uri=http://www.meinvz.net/Messages/;icon-uri=http://static.pe.meinvz.net/20110328-0/favicon.ico" />
<meta name="Search_getFriendlist" content="formkey=7d2110d8c5b06cfaf97f25156971a6cf8c70ebb621a1ab9bd0086289a38df9ea654f106452d50bcab4a0f896e64849962745febaf29517b0ace5ae2fe07ad61b743ac8c3e1278fe61d4a30278154383f584fc68003ec3e328704dd88575b6d218d7b9df69705590e17d93082e37bb141&iv=7a59f230e4a76d9a181ca9767231d965" />
<meta name="AccuseIgnore_accuseIgnore" content="formkey=8b5c897a66c361df5fa12332aa3c2f6e6105404eccf31729261b8e40808e56cfad70765961d396bd1f35d96d531929da15b36734100d815102100b70ca572526fbe7179552773002f26c501de1103cbf2d68b1f243541ad7c2c6633c3fb5cb718238a344d280dc959febf0874a62ec6952b531b765dca7fdd739979e937f63ea&iv=ab932745682873aab3d5247bfb47d555" />
<meta name="Photos_getSliderData" content="formkey=22f100f47f16f980b82f7090bebc3d8460ec19c19b00f0a8122db499915d98ae7b2f9461b7dda502bd7c12baf56455c25bb65206d8867d5687c921f94e393825b34b2b6a4cccc32ef7bd84b71341545b04b8f05f871e4ade3c7629bd95b68bc1078043bd539e9ee2b9e357e23017a557&iv=81554b2bdaf038aa0b8f3c70771fc501" />
<meta name="Friends_bigPathRender" content="formkey=cce1b9d29caf0c6fa4507383c5a3cf4109641fa41ab8b30a2c56553d31df55934846220c5c8d98f570042fb701d779afdbf564007605928b03ad77854adf30adf3e4715068b9bacbad761426acec839cd76920b2c52315c11dfa2916a4dd9a8a21bd9399ceb3835d5fae2fb764685dd7&iv=a3b96aa20dd57bc76d5253c19d7d9c22" />
<meta name="Photos_getUserAlbums" content="formkey=3068a34d3ce0a32980b31e6b7df41fc53c561906c4af579f64e843cfd030b77b7246d248dcd35078ff12dfc64e557518ac8a95b2bfe3d19ff20921aa8778f14fa8a7b71f5051ae1bb550d3779b4cf5d49388364ad5eecffcfde899bbc267f5b5106278cd452c3f2719acd63332bdcaa1&iv=0c92f0e9119b9ee4bfacab15a01bd830" />
<meta name="Photos_getAlbumPhotos" content="formkey=8b692cb187a573d05445d62fc4a601323b916ffe32f022aede59029d1d7a671ae22575b6a5e55ac18e2064c38d1882274bd7316c2601d7b4fec77cd1f55fb450c05c6cde3d353c91bcda869762fe5521e15d41f2627a2701dd226749489bfcc3adfc3e7463c0e27be5ee307d3a384203&iv=30bef3fe1b3a94782dbefb6551a9118e" />
<meta name="Link_imageUpload" content="formkey=684da12683e753422fdfe442086b78c73de5fb8d031ef625243bcb73d391789edc4ddca97dae3b19b343876fa6a2e2c86144a8431ed4efc626818b4e6647e6e0bad8b2e8b71d05f7656a5ad88c138330ea7d6db99f5210138428bee15a1ce5dd6e7c72536fa25d810d9d3b05d19f00ae&iv=bf141131087d3f1e6ca27f87e2d1dacd" />
<meta name="Link_embedImage" content="formkey=5b59c47270411b64beec6281abfd3323a32d6979474069b0ff54e484caaa502434e821aa1c3580cd58e7dd4baad89653a6e07cc5b43608da06a70f6e635a496a3329060b23cb58ec0072c828f46d715e98f880f092bb7eb3f81f4d305ae9f5dc1bec1a80c131639984343de1d4a1a896&iv=b2960fe4664fef6634b4d0bb8712be22" />
<meta name="Link_embedContent" content="formkey=701ab511f3c9c62ebe31148e9e2f5a9f15a4152f5bd80f7d49f3f0579989b6095c96b3d2902844ab5e441951289f29367b71fc71f8cfdf9c360e218299874f6d26f928760a6b402512c8aa43811a659aee20e79cbe0b8e463c13450d19ad029914b372a350dcf6eee89668e59e9e07db&iv=8f6a246da90f5c7807dd39e8719568e9" />
<meta name="Gadgets_CreateUniqueToken" content="formkey=5d821ac1bde379b54b6621b2370532430b2b1e408ec3e8d21896086e60ce4fc90a85b0bcc651274bcf768a44d202e3c15e8f3d49f96f39610a8043bc91df99885bef75b1f8f74dd73270825244ca3174959f2e739e9195c76440f8cced87211c6549b512179473f3907aba651a55e27d&iv=1e56b134a21b24bdb4d4cd4d9f187ce2" />
<meta name="Gadgets_getVcardInformation" content="formkey=2ae80fa457cd4b0321fcd9f28af0f1169c944a84eca4875e87ac63f850a382cff466bd8d5ae749ff808c42374485331b52cf5f4fe4912344b91e73560ee37148494f0d23f0de828499c334a81621c986512c9291f3b227219477805897ac7e4bedec489a71bbe1d6f57c0ecb116330f2&iv=23c9b43f39491bca9f0b6e26048feb1b" />
<meta name="Vcard_getProfileData" content="formkey=0550739c9c89807c260e4b83ed2bf786760ba90d1f72a377ff7a0d61f3586420d8c3c9731402d3fad467c151163efb5bfdfee306ffade6ad599aab52fd7661c219df0512ec2894ccc292f7c982dd8ec6404736fb658815ed60a3b43b8fab9b7c5c7dd43954ae6acd31d95bae57b50d14&iv=1e106702f11150bd6d3598af80c2e132" />
<meta name="Vcard_getVcardData" content="formkey=cdac9968f34fa74b8eb400b94d9b7dead755aa7ce423425991e9cd1c3a132bf81935d5a5153267fa8addcc29a7dee0beb85d2e7b9ccfde55996bd8187c188934ab97e5c31a01ba548389df6e216ac5c5d69fc6a6c3af82d316fa7550b053e3572fe48f17d808afccf4f9589cdac0b567&iv=4dadde1b8915654adb1b2e107b23a054" />
<meta name="Gadgets_getVcardForm" content="formkey=4e26171d6e917861642cd1bf645f8464ebe1292a7d408cca58c9d9f27abeca4913fe756d7a1fdee3d81cef9e6136d5cbe6b4d5202d84e3961f9c723bc69fd870724f7a8d4c6f281e98ac32adeae0b50f42bad2e65d4967c498f84d3c46e27f4ff833d360389e1e1b0bac4c332b6c3e9d6b04041ab0dff3dd09c8366540c68ef7&iv=ae74ca5a56b9f153c7df030a71cd71c0" />
<meta name="Gadgets_GetSecurityToken" content="formkey=398ef07989c77c25c295e9c0926fa1896ec1ca56c05105d80241848317c810ed7b4db1b61250ae4f873e8f3eaa4664ebc9db14525d3c19b49fbddc9e1c2e2893a67369826dc85536d363a4ede87da569aac0984decdfc0b796dd4923a829b78445631ba2e1616a270f85683d18925fd3&iv=0e16494cc79b6dac125747c67b2b976b" />
<meta name="Gadgets_getAdTag" content="formkey=924c514c504fa0b183aaaf6c2f22f11d396efc07575f32c377a0534b91a30aea0db1c514e8ca5197360e902973b65e9b36df6b9ace6043c26bcc2ac68a1d8b52e6fd15956ea7ff9d7d7d4d4817545c0b721443ea11d76cb3a5d8190b2c7215c0b80ae0ecc9fcc5a1012a36ef5a85f619&iv=7e5c0713ac9148523b8d60e6c580e3ba" />
<meta name="Gadgets_writeMessage" content="formkey=b1ddf17a8252674be13e2e31e4198a3a977fc994374af474267518232c84f126aedb84b9ecb42a60a237d0a6c96eac3aa8636c8f06329bf82176c0c16b9e88b1238ac7a866030d404e730a7dfa1c759f167d4ad82481c82259c3855519cef7a5884608aaab3983adfe1d559d01108998&iv=1b1c5b5f0d4515c07d7953cf67fa889f" />
<meta name="Gadgets_replyMessage" content="formkey=636b1356def289c71f313efe24304a4561c6f52a9561cd81c7ed18bb7c1b5f936f4bd7f29cc3f225ccab2dae91f687843ec6fa3f8b991e1e031ad5a6ee7147af744c60f47fee3ed3ce9209600cdbbc70b2b1a1f771a5aeaa39681ba7d7c62cebed17365e88ab6aa90ea9f19e7641045e&iv=9b4b5bfbcbfdf4b750626ffd27e19c40" />
<meta name="Gadgets_pinboardMessageDialog" content="formkey=bc8bd145d6c4ebf473ef2548d17b14da820cdfcc6935fc46848485fdc3ec7b7c11aebcb9ded5db72e7886e5471f57d9f9e8c3b4392b78b912844570c7be09a23587636434b9afa48000c312fe87e55d186fe48add73af795ec1261afe3f5c3d24aa158a33631b1e9d636be9684d7ab5163e0db817535810d44719e5417a4c21e&iv=150f85d3f26878925a327d99b40346e3" />
<meta name="Gadgets_pinboardMessage" content="formkey=b6d208e3b05a2a0885fd283a1cbd4bd298a6e1053dd8389fcddb0dbbf965d18f6a2a3b645ed8995ea329b3871d7e07649ee2f2356e0a2868397c8d50db39200d05c7d10c4fd575f27f144aae965a9669f45ac2daca70c1773d1d70b907fc2805563cf0801cdc945684c47cea6f986302&iv=b02e31cb91e5709419719f61203cf022" />
<meta name="Link_getEmbeddableGadgets" content="formkey=76f2ddc3ae94b24ff200cd099ae4c0adf93fbe775aa5d40904894e78a84da8e0726b4adb6bd7dfcdeec1a6ec075d95a3ed91fcf9610c32996fc42ccece073e0f4350ff6343cbede759187ff9bee80932c6bcf92d5b20cda95c6e0182918c2ae1aee6bdbcb767b898eae6b1b4d1ea63c8b2c844637bab714814e837b878aea8e0&iv=7efa455be536d511426d98ae12663177" />
<meta name="Link_getEmbedProviderView" content="formkey=e0e6bbd4057b3b251a3d2e1cc890eb0e09acc2d1d1cbfd92cbd7c1588c8ac96bb67ceaf4a9f40ec7e8e6ecbd52c79e41a2408646464d379a8e6409437c05f84ef857c882142a5946adc7c1554da6ba80df8470a10944ebb15fde7691623e044a1266ace239a05d3383fede02a1e11cad36ea26c88a3469dd3aa0be029bc10bb4&iv=42012ec94f0098826db211d8989f3837" />
<meta name="Link_getFlashUploadForm" content="formkey=34d61d8bb615604b9c9ae5e3f333e05f54e94c343391dae6d855305800ef29c56d896ef9b23adc68b0551f50af91263d69e283a5d1ea326ef4e0b151dafa9cb3560512ce7b95cdda416ba078050da9b4c1c9de70529874e18954c1b2af1077c7580c7559ad852158a8c18174522b5a8ffa72cf6ce140df2e0883c6522ece140b&iv=0773f2cff4f789981152c10010546760" />
<meta name="Groups_ChooseGroup" content="formkey=ffccbecd0420e6f9147ccf7484e03b2dc02b5487672c1be7ea7ddb8bdb28a7acedec26a0c2aa9e5b419d3f637b54a0c87f6873762447fe61fbb20eec8302261b9cb1f4bd0ee0ee2e0ee8a9508b40f7fbe6d76d735da1fa98ea934edfd19787065cf7f8b65cb9f8828a82446c71f204ba&iv=03f8f8a1b6f773eba8735325059f142c" />
<meta name="Profile_ChooseProfile" content="formkey=c825a64acfba1999ad43b87f24c0d70fd30990d23db380bc33780e19b4b2aac3b8aeae9e3960683734005941cb71d181427326ddf25a0840944d6552977bee38c69e8a0210c485a4d6ffc2881f38f3de619f575a5498d98791fcb179d0a1d4879294c2bb60cb4ef9dc525e223dca2578&iv=8bc6125fbf9d6befa872651060134d60" />
<meta name="Pinboard_ChooseVisual" content="formkey=621af4ec6ac020f3ad3f0e482f7fae693a26803e63b40eb08fa718f63a7a4b797aeea39f652cb59a5a5e53c4dfdd2a854a0551e0df89273c0b48344af6452ece2036ff6cce34b8fbeb33d3e58ee9ab8ee4a1e7dd1234dd672ea4de4c1f9884baaf8811ac3e9150ecbf622394733b400d250b15dec38c9f96088baf73cac0efdd&iv=471e58e61b5eec79a7f405bb4c916726" />
<meta name="Gadgets_getStaticKey" content="formkey=7eee9345b9b0b2b77949cbfd2f594efe78f1c7844d785b3fe6311933198822a0361366f4740c8420584c5d102afdf65c168a50d2e82672975249c2d8558a7705472aed36d9137d30dce96961f1731bcb7507b2373bbe527f1d70c04c02bbb727b57d1f9421ebee378db2e1456a94f3a3&iv=37731011e748fd8888601c97b6a831a6" />
<meta name="Gadgets_feedEntryDialog" content="formkey=3389fc5df7cea6441c0115a5917dff8d9cc4b52094f57d1a037299d0acf7e3e76d1ef525f5e5e17f9be53e6a87daed4cc5cf4f43a938eee44533eacf59cab32ecdc435f014c06fa7f28cd80c6a5a2c21a94dcf8fae5de62d9e7c9a834320bae5373d33ae6e14268920c5ffe3c9145113f2620a37f48c868096b8d235c4559194&iv=3c97bf944fa03c6784dc790b34840678" />
<meta name="Gadgets_feedEntry" content="formkey=6184ff90cf40b380ed5a21e64119d891f58c6e68be88d7acf679066719181d174f760119088ba8f78768a48d44715da68f46ff055c27fd55494fb01dfde668d88892770a2baef1359ece4ee02265843033dc39a9beeb84e7e03c22c36b5b4f91862bd990d2bbc4f2b1adf2d8eaac272b&iv=e59b436c63ce5b52e513535d8af240f1" />
<meta name="Gadgets_getPermissions" content="formkey=cdd5e5ac365ca3bf92747e118dcb1e824a80efba9b8b5a36b3a96068d4646021eb6b21b85064c7a29fc943dd9e530b3d514e4d9746c6555c23f2e5bf5ce410a7b6f53c0d8207778d3aa288ca4f3bfccdfb742676c8d7e6544f4b85840b0ea2865d0bc12338dbc3ead25be27efad69fce&iv=2c06e93ac9527a3403d9f79a541a2049" />
<meta name="Link_postFeedEntry" content="formkey=50fa7fdeb0e264dc9ff1bb80892730376b2d78d59286304a8dc62a6d1f6fd624460d7d2ee8be9e1aa75d9593a1a6e6d9d032d750e2aa79c8ec2321566d543197f811c30ab822b1aa59091290af938f82e5594a9bead151be9067190732c3b0d94f7d89fe7738f627e2c63eec3d2db33e&iv=cb79a08293053f26a070ca4d89b6f82b" />
<meta name="Link_sendMessage" content="formkey=3e31fa5c52305ee649ac815853c18060d18ff16615990cc34de2c0dcdfb4222f8eccd4dd5bc0735d633390e5520652db9860d483ab09688dd78da581da399b7e1b22d6f4fe0faa8135abe811bc7e50ab369a6ceb48e7933ddef371f07f8644be&iv=cadd909eb08ab376c061fa8c5d2194c1" />
<meta name="Badges_postBadge" content="formkey=e94d9dfc3b470469a16f891223bf81dd788a9911cc1d3309bac2c4b735138581144e69e3d6b7ee276c7716bbb1d3152d6b499fb71604e9587da69f1b99363540024a1e816c824c4d3de19a1a45efdbac2d19dc6e9eefd6ee93fb14a47355da03ce0f5d555d0453c7b0f625db08e46341&iv=e2539520871c7e048779c460d854958a" />
<meta name="Profile_getUpdateImageForm" content="formkey=955f22e314cbdf58de553f7f1f5e35ceb68725682f1d8562e002448e9e7591762584c9cbd5b4a4acfe91b00ac5ec7864e80dcb899f9814c3fc1094b1eefd07ad01d9842766e3a1d8502912baacaef692ba6594db222f05b301d4274dd94a85c7ecb100e5c7b25ed83f5f65bc30158ff882a409a2d81a14e13d50fdc4b423ab0c&iv=21c17695f6980457e678a270b741742a" />
<meta name="Profile_updateImage" content="formkey=412513b80b01c947c5110cdab7870e17333aad59ef19f53776d7f61a0b4fa241e134bb44e953897dcb1c113ae3195f42228a501fdeca58a58f802c4f4caa4c7fce4036aafe4254bc2b319e66874db8ea83958cb0fcd989e7312c7cd3daf0949c204f3455ba4fd769d0d95dd21385dd1e3d872f8c2386f0ff21a7a0def4ea9e8a&iv=d4f7bba9146813f2e0f674db6ef9160d" />
<meta name="AccuseIgnore_accusePinboardEntry" content="formkey=85b3374a96ef008b105cf52c0ef4f5ddb4b5f4c258ad28c6eb078a87beb55d2e3e1f64b3d3dc6ff6a845616078f5c4abff915c39bc47e2bbb5222dd7a9e8961726374146d161848876bf9049649b9f447d5411efcb3bee1d3d62b73168e3cf2cb0be01f2fac8df310a780cc4765f3f2ea48e5978e5991fe05a967577fd60b291&iv=a7c1ed999f2c220a348905dca28c3931" />
<meta name="Pinboard_refresh" content="formkey=5179d8ff66e52f422f8fa91ad61f542e708e6945f8fa5b045711bda7a518474fcdd94207db4266b3ffc4768ae3b4033bcf4b89fa5b6d39346af1d3725866e8a54a79ad873e9d4528f223476f0eee77d0f3fa97a77b7231d38932b0b4d327aa8adb6c0be04f02bd2d11dbc45d01f5b260&iv=199f31e6ca392a2124c10e30e016bb05" />
<meta name="Pinboard_delete" content="formkey=9a8fdcee80dfa11192e828defd804f050c99154b895322fc375864a298f23e1ee5f91ee6789b795d6207bb5f556d410568c9333a85f57fe4973b5b7be4a30761f962968e206d0a62c1391381196dfdb687730500ac22caa2b16aeccba2afe557e9eb8878b8af67389df269d76e8d9803&iv=9dab9f9804dda9693d7d463248bb2c6b" />
<meta name="Chat_token" content="formkey=cca81c658896bcbad9b62822021b721eafef55d1a4f516cb12c817875a6a96b18e81a3471125e61181a612ba45f395a17e65bab41913240f138278de013868283cb08b3ee155b42e1c95b5309e81fe27e660dadd4b91a4439833d796689d234d288af9878ea7be196fa947703430da19&iv=876c5e1c53bde96bf2b040d08c7ec25b" />
<meta name="Chat_setStatus" content="formkey=834bef959c28e306e990cdf1d06fcd58f09f8dae5226628a3a65531a3c08bfb31071e0b50cedade61850f923f29c83e09813c4a230961a0126d351102b250024dcb8cadf05d49402a38ff49c8f2220a17474dec3e568b8f03a48fc0f74fbae08902b1b803dbac81956a0993b90add176&iv=d5308a7991ddd9f8d9fb4f70bed0298b" />
<meta name="Friends_addFriendDialog" content="formkey=13b023cfc761bdc60a8f1124c312d67584508884aff6a7c16673db6cb0421514d6d415bf85e9fae0155ec91ddcd8012bf070082dbff1aa94aed622d8a7a4c387e7fedea3e4fde1cde564809d0239c2c5418ed917ebc2c6a4fda781fda9576605fb2ff6880ad913da6be0dbaf90f3e850&iv=bca21c311aafd1fd5b1313ef2062ae4e" />
<meta name="Friends_addFriend" content="formkey=aa2ea405afd18224ca2550ee9bd6fc0d75269469d21d5e37441861691edb6cb1c5a4161e45c6ca00289f0c89a5e25ee16507d50e96ce80768f68847bc733985768e46d9b5e78afc55898f931aeca2b24df18c53af9df8fefa4864859e9eb8863&iv=49a37ffacc4f6f53bc9078c2b67c7346" />
<meta name="Uservoice_feedbackDialog" content="formkey=23dae784a7d029db14aa25f4448f43f6e287d67949ed45909da45f56ec46bc3e7a4a4467b41f9ac8b6b6ddc7112d8efcfe672db5f1de8147cf81a20ee466924186a1c0107dda1be0ae41c268f040886b4563d8ff81699ea37e726f10faa97c0ec27ab03e12917444ce387cfe6d474b52&iv=8e3fd64881332b50197b7d1a1f69062f" />
<meta name="Polls_answerPoll" content="formkey=8f993c375c4402c966bc8fca93322d32dd67d0cfaebd6d74a3c6f6648e6a41d1ad2fec1d382177d2b0f5fc8d62ad5a1629265e417c368ea54b219b66135dc88ddc73d79ba79c75945e5cf0291b53b2a74e15c8c4f4d4b3c9461fc0ff7becc497121ed870c617e852a481a1d239ebf80b&iv=ca8cf99b43561c4788cbd7350e46bb4a" />
<meta name="Polls_diagramView" content="formkey=5ecc27bfc42bff4b7551103822fa5fbcb69fe95eb53c221a3835d2663e2fda9f495ea0db9691fb1977770d9fe987168edd2c49ca9dd33a9dad4d2eb45af0035fe4076874c76f1399f2d47231688c4d8a4c90b7ba00f88329964726554baca3621070bb70c57c6d30aed9fcfeebe1c636&iv=8969873fd9476891c53466751beaf600" />
<meta name="activeModules" content="Profile,Search,Login,StaticContent,Cooperations,Chat,Plauderkasten,Gadgets,Info,Ims,Friends,Advertising,Uservoice,Photos,Privacy,Blog,Messages,Gruscheln,Link,AccuseIgnore,NobleProfile,Microblog,Education,Work,Groups,Pinboard,VoApi,Badges" />
<meta name="pageletName" content="Profile.Profile" />
<link rel="shortcut icon" href="http://static.pe.meinvz.net/20110328-0/favicon.ico" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Base.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/AccuseIgnore.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Friends.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Education.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Work.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Gadgets.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Gadgets/Gadgets.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Vcard.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Groups.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Photos/PhotoUpload.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Photos/Photos.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Link.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Buschfunk.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Mod_Pinboard.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Profile.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/FestivalRss.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/ManageFriends.css" />
<meta property="og:title" content="Patricia Müller" /> <meta property="og:image" content="http%3A%2F%2Fimg-p3.pe.imagevz.net%2Fprofile2%2F21%2F67%2Fb2ac7a2b9c2fbb10ddb81d46c694%2F1-1c6178cadc937622-s.jpg" />
<script type="text/javascript" src="http://static.pe.meinvz.net/20110328-0/Js/build/resource-core.js"></script>
<script type="text/javascript">
//<![CDATA[
var brs = navigator.userAgent.toLowerCase();
function Adition_BrowserId() {if (brs.search(/msie\s7/) != -1) {return 9;} else if (brs.search(/msie\s8/) != -1) {return 10;} else if (brs.search(/chrome\//) != -1) {return 11;} else if (brs.search(/safari/) != -1) {return 8;} else if (brs.search(/opera/) != -1) {return 7;} else if (brs.search(/konqueror/) != -1) {return 8;} else if (brs.search(/msie\s6/) != -1) {return 3;} else if (brs.search(/msie\s5/) != -1) {return 2;} else if (brs.search(/msie\s4/) != -1) {return 1;} else if (brs.search(/netscape6/) != -1) { return 5;} else if (brs.search(/netscape\/(7\.\d*)/) != -1) {return 5;} else if (brs.search(/netscape4/) != -1) {return 4;} else if ((brs.search(/gecko\//) != -1)) {return 6;} else if ( (brs.search(/mozilla\/(4.\d*)/) != -1) && (brs.search(/msie\s(\d+(\.?\d)*)/) == -1) ) {return 4;} else {return -1;}}
function Adition_OSId() {var os; if ( (brs.search(/windows/) !=-1) || ((brs.search(/win9\d{1}/) !=-1)) ) {if (brs.search(/nt\s5\.1/) != -1) {os=3;} else if (brs.search(/nt\s5\.0/) != -1) {os=2;} else if (brs.search(/nt\s5\.2/) != -1) {os=8;} else if (brs.search(/nt\s6\.0/) != -1) {os=9;} else if (brs.search(/nt\s6\.1/) != -1) {os=10;} else if ( (brs.search(/win98/) != -1) || (brs.search(/windows\s98/)!= -1 ) ) {os=1;} else if (brs.search(/windows\sme/) != -1) {os=1;} else if ( (brs.search(/windows\s95/) != -1) || (brs.search(/win95/)!= -1 ) ) {os=1;} else if ( (brs.search(/nt\s4\.0/) != -1) || (brs.search(/nt4\.0/) ) != -1) {os=4;}return os;} else if (brs.search(/linux/) !=-1) {return 6;} else if (brs.search(/mac\sos\sx/) !=-1) {return 5;} else if ( (brs.search(/macintosh/) !=-1) || (brs.search(/mac\x5fpowerpc/) != -1) ) {return 5;} else if ( (brs.search(/unix/) !=-1) || (brs.search(/x11/) != -1 ) ) {return 7;} else {return -1;}}
function Adition_ResId() {if(screen.width==640 && screen.height==480) {return 1;} else if(screen.width==800 && screen.height==600) {return 2;} else if(screen.width==1024 && screen.height==768) {return 3;} else if(screen.width==1152 && screen.height==864) {return 4;} else if(screen.width==1280 && screen.height==1024) {return 5;} else if(screen.width==1600 && screen.height==1200) {return 6;} else if(screen.width==1280 && screen.height==960) {return 7;} else if(screen.width==1400 && screen.height==1050) {return 8;} else if(screen.width==1280 && screen.height==768) {return 9;} else if(screen.width==1280 && screen.height==800) {return 10;} else if(screen.width==1440 && screen.height==900) {return 11;} else if(screen.width==1680 && screen.height==1050) {return 12;} else if(screen.width==1920 && screen.height==1200) {return 13;} return -1;}
function Adition_Flash() {var f="",n=navigator;if (n.plugins && n.plugins.length) {for (var ii=0;ii<n.plugins.length;ii++) {if (n.plugins[ii].name.indexOf('Shockwave Flash')!=-1) {f=n.plugins[ii].description.split('Shockwave Flash ')[1];i=f.indexOf('.');f=f.substr(0,i);break;}}} else if (window.ActiveXObject) {for (var ii=10;ii>=2;ii--) {try {var fl=eval("new ActiveXObject('ShockwaveFlash.ShockwaveFlash."+ii+"');");if (fl) { f=ii; break; }}catch(e) {}}} return f;}; function Adition_Trel() {return '&prf[iug]=14414616644375930622&prf[fhj]=001&iqh=14414616644375930622&ipt=0';};
var ad_wid = Math.round(Math.random()*2000000000);var ad_count = 0;var ref;try{ref=escape(document.referrer);}catch(e){ref='-'}var os;try{os=Adition_OSId();}catch(e){os=''}var browser;try{browser=Adition_BrowserId();}catch(e){browser=''}var screen_res;try{screen_res=Adition_ResId();}catch(e){screen_res=''}var fvers;try{fvers=Adition_Flash();}catch(e){fvers=''} var adition_tag_set=false;
//]]>
</script> <script type="text/javascript">
//<![CDATA[
var requestToken = "WphF-rm2VK6viLOcH_d0x4O6PRV7jzVGc20QXg76fTQ";
//]]>
</script>
</head>
<!-- Du liest Code? Lies auch: http://kurz.nu/r/20 -->
<body class="avz gecko gecko20">
<div id="Grid-Wrapper">
<div id="Grid-Advertising-Top">
<div id="ad728x90">
<script type="text/javascript">/* <![CDATA[ */document.write('<scr'+'ipt type="text/javascript" src="http://studivz.adfarm1.adition.com/banner?wpt=J&sid=50474&wi='+ad_wid+'&ac='+(++ad_count)+'&ref='+ref+'&os='+os+'&browser='+browser+'&screen_res='+screen_res+'&fvers='+fvers+'&prf[iug]=14414616644375930622&prf[fhj]=001&iqh=14414616644375930622&ipt=0&mdev=100"></scr'+'ipt>');/* ]]> */</script></div><script type="text/javascript" src="http://static.pe.meinvz.net/20110328-0/Js/meetrics/adam100111.js"></script> </div>
<div id="Grid-Advertising-Right">
</div>
<div id="Grid-Page">
<div id="Grid-Page-Left">
<div id="Logo">
<a href="/Home" rel="nofollow" title="zur Startseite">
<img src="http://static.pe.meinvz.net/20110328-0/Img/logo.png" alt="Logo meinVz, Link zur Startseite" />
</a>
</div>
<div id="Quicksearch">
<form id="QuickFormSearch" method="post" action="/Search/QuickSearch" class="obj-quicksearch">
<fieldset>
<div id="resultboxAutosuggest"></div>
<div class="labelinside">
<label for="searchfieldAutosuggest">Suche</label>
<input type="text" name="name" id="searchfieldAutosuggest"/>
</div>
<input type="hidden" name="quickSearch" value="1" />
<input type="hidden" id="disableAutosuggest" value="0" />
<input type="hidden" name="formkey" value="2a9375bd1571ee8f93d90ff84c62027e332d580c5d77c8a70982da4cfec337eae7701e54f35df0ce2c8d0886ff294d9b60a8dcea8f7b1b9736fb3da761727f81e93947158b971a938187727360988b22fa9ba852490cb946d8b82a8e104ff2424f2552ce6c2c46c5e893eead8317f6f3" />
<input type="hidden" name="iv" value="4cede1bdd9a7e62ed209766a2ab75d10" />
</fieldset>
</form>
</div>
<ul id="Grid-Navigation-Main" class="obj-linklist">
<li><a href="/Home/tid/101" rel="nofollow" title="Start">Start</a></li> <li class="clearFix"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsajYPqMm4gHSnUJiB7MaBIo/tid/102" class="left" rel="nofollow" title="Meine Seite">Meine Seite</a> <a href="/Profile/EditGeneral/tid/109" class="right" rel="nofollow" title="bearbeiten">bearbeiten</a></li> <li><a href="/Friends/All/8tdVJyeco54Sp6cuBo1qsajYPqMm4gHSnUJiB7MaBIo/tid/103" rel="nofollow" title="Meine Freunde">Meine Freunde</a></li> <li><a href="/Photos/8tdVJyeco54Sp6cuBo1qsajYPqMm4gHSnUJiB7MaBIo/tid/104" rel="nofollow" title="Meine Fotos">Meine Fotos</a></li> <li><a href="/Groups/tid/105" rel="nofollow" title="Meine Gruppen">Meine Gruppen</a></li> <li><a href="/Gadgets/Overview" rel="nofollow" title="Meine Apps und Spiele">Meine Apps und Spiele</a></li> <li><a href="/Messages/tid/106" class="Navi-Messages-Link" rel="nofollow" title="Nachrichtendienst">Nachrichtendienst <span id="messages-navigationlink-unread" data-unread="0">(0)</span></a></li> <li><a href="/Account/Account/tid/107" rel="nofollow" title="Mein Account">Mein Account</a></li> <li><a href="/Privacy/Settings/tid/108" rel="nofollow" title="Privatsphäre">Privatsphäre</a></li> </ul>
<div id="LeftsideBox" class="box rounded simple-ext">
<div class="innerbox">
<p>
<a href="http://www.meinvz.net/C/2637">Ohne Seepferdchen</a> kommste heut nicht mehr weit.</p> </div>
</div>
</div>
<div id="Grid-Page-Center">
<div id="Grid-Page-Center-Top">
<h1>Meinverzeichnis / meinVZ</h1>
<ul id="Grid-Page-Center-Top-Navigation">
<li><a href="/Language/en" rel="nofollow" title="English">English</a></li>
<li><a href="/Search/SearchGlobal/rmC/1/tid/121" rel="nofollow" title="Suche">Suche</a></li>
<li><a href="/Invitation/Invitation//tid/122" rel="nofollow" title="Einladen">Einladen</a></li>
<li><a href="/l/help" rel="nofollow" title="Hilfe">Hilfe</a></li>
<li><a href="/l/mobile_info" title="Handy">Handy</a></li>
<li><a href="http://blog.meinvz.net" rel="nofollow" target="_blank" title="Blog">Blog</a></li>
<li><a href="/Logout/2b069b333aca8e4d37fc82f3eed18f15/tid/127" class="logout" rel="nofollow" title="Raus hier">Raus hier</a></li>
</ul>
</div>
<div id="Grid-Page-Center-Header">
<div id="Grid-Page-Center-Header-Menu">
<input type="hidden" id="Chat-Header-PrivacyUrl" value="/Privacy" />
<input type="hidden" id="Chat-Header-PrivacyUrlSealed" value="/Privacy/Seal" />
<input type="hidden" id="Chat-WindowUrl" value="/Plauderkasten" />
<div id="Chat_Header" class="">
<div id="mini-chat">
<span id="chat-active" style="display:block">
<span id="set-my-status" class="">
<span id="set-my-status-icon" class="my-status-offline" style=""></span>
<span id="my-status-selector" style="display:none">
<p id="my-status-selector-online"><span class="set-my-status-online"></span>eingeschaltet</p>
<p id="my-status-selector-away"><span class="set-my-status-away"></span>abwesend</p>
<p id="my-status-selector-offline" class="active"><span class="set-my-status-offline"></span>ausgeschaltet</p>
</span>
</span>
<a id="header-text" href="JavaScript:void(0)">
<span id="online-status-text">
Plauderkasten </span>
(<span class="online-users-counter">0</span>)
</a>
</span>
<span class="target-amount-unread twodigit" style="display:none">
<span class="target-num">
</span>
</span>
<span class="target-amount-calls twodigit" style="display:none">
<span class="target-num">
</span>
</span>
<div id="message-sound"></div>
</div>
<div id="Sound-Player-New-Message" style="height: 0px; overflow: hidden;"></div>
<div id="Sound-Player-Incoming-AV" style="height: 0px; overflow: hidden;"></div>
</div>
<!-- Start Lovely Code for Mini Chat Notifications -->
<div id="notification-new-message" style="display: none;">
<div class="notification-text">
<span class="target-username">Vorname Nachname</span> hat Dir eine Nachricht geschrieben. </div>
<input class="button" type="button" value=">Lesen" onclick="javascript:openchattab()" />
<input class="button" type="button" value=">Ignorieren" onclick="javascript:closenotification()" />
<div class="clear"></div>
</div>
<!-- End Lovely Code for Mini Chat Notifications -->
<div id="gadget-menu-header">
<ul>
<li>
<script type="text/javascript">
var popupdata = popupdata || {};
popupdata.href = "/Gadgets/Popup/489";
</script>
<a href="javascript:;" class="gadget-featured-link-popup">
Röhre <img src="http://static.pe.meinvz.net/20110328-0/Img/tv.png" alt="Röhre"/>
</a>
</li>
</ul>
</div> </div>
<h1 class="ellipsis" title="Patricia Müllers Seite (Eilenburg)">Patricia Müllers Seite (Eilenburg)</h1> </div>
<div id="Grid-Page-Center-Content">
<div id="shoutboxJs" class="obj-shoutbox hidden">
<div>
<p id="shoutboxJsSuccess" class="success hidden"></p>
<p id="shoutboxJsError" class="error hidden"></p>
</div>
<div class="close">
<a rel="nofollow" href="javascript:;"></a>
</div>
</div>
<div id="Mod-Profile-View" >
<div id="profileLeft" class="obj-box onethird">
<img src="http://img-a3.pe.imagevz.net/profile2/21/67/b2ac7a2b9c2fbb10ddb81d46c694/1-1c6178cadc937622.jpg" class="obj-profileImage" id="profileImage" alt="Patricia Müller" />
<ul class="obj-linklist">
<li><a href="/Friends/All/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs" >Alle Freunde von Patricia</a></li><li><a href="/Messages/WriteMessage/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs" >Patricia eine Nachricht schicken</a></li><li><a href="/Gruscheln/DialogGruscheln/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs" >Patricia gruscheln</a></li><li class="user-showlink"><a href="/Link/User/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs" >Patricia Freunden zeigen</a></li><li>
<a id="accuseIgnoreLink" href="/AccuseIgnore/AccuseIgnore/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs">
Patricia melden / ignorieren <input type="hidden" id="accusedUserId" value="8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs" />
</a>
</li> </ul>
<div id="MicroBlog" class="obj-innerbox hidden">
<h2>Letzter Funkspruch</h2>
<div id="microblogContent" >
<span class="microblog-guid hidden">8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs</span>
<span class="microblog-ownguid hidden">8tdVJyeco54Sp6cuBo1qsajYPqMm4gHSnUJiB7MaBIo</span>
<p class="microblogHistory"></p>
<div class="microblogMeta no-float">
</div>
</div>
<input type="hidden" id="MicroBlog-Emoticons" value="{":*":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_21.gif",":-*":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_21.gif","x-(":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_13.gif",":-&#38;":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_12.gif",":-s":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_10.gif",":-o":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_9.gif",":-x":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_8.gif",":oops:":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_7.gif",":-p":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_5.gif",":-((":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_6.gif",":-(":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_4.gif",";-)":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_3.gif",":-D":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_2.gif",":-)":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_1.gif",":)p":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_14.gif",":)":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_1.gif",":D":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_2.gif",";)":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_3.gif",":((":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_6.gif",":(":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_4.gif",":p":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_5.gif",":\">":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_7.gif",":x":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_8.gif",":o":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_9.gif",":s":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_10.gif","|-)":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_11.gif",":&#38;":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_12.gif","x(":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_13.gif",":h\u00e4:":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_15.gif",":vz:":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/mVZ_Emoticon_15.gif","8-x":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_17.gif",":hmm:":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_18.gif",":emo:":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_19.gif",":yo:":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_20.gif",":kuss:":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_21.gif",":alien:":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_22.gif","$%&#38;1521":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_12.gif","$%&#38;1747":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_13.gif","$%&#38;1853":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_14.gif","$%&#38;1897":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_15.gif","$%&#38;1899":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/mVZ_Emoticon_15.gif","$%&#38;1903":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_16.gif","$%&#38;2189":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_17.gif","$%&#38;2276":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_18.gif","$%&#38;2376":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_19.gif","$%&#38;2454":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_20.gif","$%&#38;2365":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_21.gif","$%&#38;2471":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_22.gif","$%&#38;2498":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_23.gif","$%&#38;2571":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_24.gif","$%&#38;2588":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_25.gif","$%&#38;3333":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_26.gif","$%&#38;4444":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_27.gif","$%&#38;4578":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_28.gif","$%&#38;5555":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_29.gif","$%&#38;5783":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_30.gif","$%&#38;5912":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_31.gif","$%&#38;6173":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_32.gif","$%&#38;6262":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_33.gif","$%&#38;6398":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_34.gif","$%&#38;7834":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_35.gif","$%&#38;7867":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_36.gif","$%&#38;7912":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_37.gif","$%&#38;8121":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_38.gif","*Prost*":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=68701&kid=67863&ts=1301488298","*prost*":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=68701&kid=67863&ts=1301488298","$%&#38;11":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_11.gif","$%&#38;10":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_10.gif","$%&#38;1":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_1.gif","$%&#38;2":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_2.gif","$%&#38;3":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_3.gif","$%&#38;4":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_4.gif","$%&#38;5":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_5.gif","$%&#38;6":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_6.gif","$%&#38;7":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_7.gif","$%&#38;8":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_8.gif","$%&#38;9":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_9.gif"}"/>
<input type="hidden" id="MicroBlog-Emoticon-Links" value="{"*Prost*":"http:\/\/studivz.adfarm1.adition.com\/redi?sid=68701&kid=67863&ts=1301488298&clickurl=http:\/\/www.studivz.net\/l\/krombacher\/2","*prost*":"http:\/\/studivz.adfarm1.adition.com\/redi?sid=68701&kid=67863&ts=1301488298&clickurl=http:\/\/www.studivz.net\/l\/krombacher\/2"}"/>
</div>
<div class="obj-innerbox">
<h2>Gemeinsame Freunde</h2>
<div class="obj-subbar">
Du hast <a href="/Friends/Common/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs">52 gemeinsame Freunde</a> mit Patricia. </div>
<ul class="obj-thumbnaillist">
<li>
<div class="imageContainer"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsaLH2VjNPN1EFDNgU1Z-hrk"><img src="http://img-p2.pe.imagevz.net/profile1/04/0b/71c16d6ed519ea2be8cb7378867c/1-8a2c92ddcd73104b-s.jpg" alt="Tobi Wan Kenobi"/></a></div>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsaLH2VjNPN1EFDNgU1Z-hrk">Tobi Wan Kenobi</a></div>
</li>
<li>
<div class="imageContainer"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsXHF9X1Ci41mbDCjBjO78x4"><img src="http://img-p2.pe.imagevz.net/profile1/78/48/82bfba8ffbe4abfd8ac7c6771ca9/1-7e7067dc0215c7eb-s.jpg" alt="David Eckler"/></a></div>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsXHF9X1Ci41mbDCjBjO78x4">David Eckler</a></div>
</li>
<li>
<div class="imageContainer"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsY5evW-9FWNNA281TgoyrdE"><img src="http://img-p2.pe.imagevz.net/profile1/21/86/0f3dbdd69a40fdf19a47d56d41e1/1-63604fe3a8f9377b-s.jpg" alt="Anja Lieder"/></a></div>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsY5evW-9FWNNA281TgoyrdE">Anja Lieder</a></div>
</li>
</ul>
</div><div class="obj-innerbox">
<h2>Freunde (gleiche Region)</h2>
<div class="obj-subbar">
Patricia hat <a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/48884">40 Freunde</a> in der Region Eilenburg. </div>
<ul class="obj-thumbnaillist">
<li>
<a href="/Profile/8tdVJyeco54Sp6cuBo1qsdtYvULBLGCcrCaKKJzmZoc"><img src="http://img-p5.pe.imagevz.net/profile2/76/97/7241c0a40ea47c89495a9053315d/1-7d7112a81068f8e4-s.jpg" alt="Manuela Haberkorn"/></a>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsdtYvULBLGCcrCaKKJzmZoc">Manuela Haberkorn</a></div>
</li>
<li>
<a href="/Profile/8tdVJyeco54Sp6cuBo1qsTDdDixKtoglOsq-bOMiVAU"><img src="http://img-p3.pe.imagevz.net/profile1/69/51/326f2ecb7d60ac41f502bbae3bdb/1-3d0dde540296bf8a-s.jpg" alt="Daniel Schäfer"/></a>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsTDdDixKtoglOsq-bOMiVAU">Daniel Schäfer</a></div>
</li>
<li>
<a href="/Profile/8tdVJyeco54Sp6cuBo1qsThl4Es_Mtvfatp7TL47UDA"><img src="http://img-p2.pe.imagevz.net/profile1/48/27/0fdf70ea63f0048148658c92cdfe/1-f76ecf4d974167ff-s.jpg" alt="â¥Ú¿Ú°Û£Â«à² nIcOlE aKa De StRuPpI â¥Ú¿Ú°Û£Â«à²"/></a>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsThl4Es_Mtvfatp7TL47UDA">â¥Ú¿Ú°Û£Â«à² nIcOlE aKa De StRuPpI â¥Ú¿Ú°Û£Â«à²</a></div>
</li>
<li>
<a href="/Profile/8tdVJyeco54Sp6cuBo1qscEEPpIqiZqnVRVg34f3xs0"><img src="http://img-p1.pe.imagevz.net/profile1/b8/02/486605428e578b22b77369ed56bb/1-0a8d236ab8ed219f-s.jpg" alt="Stefanie Heinke"/></a>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qscEEPpIqiZqnVRVg34f3xs0">Stefanie Heinke</a></div>
</li>
<li>
<a href="/Profile/8tdVJyeco54Sp6cuBo1qsa_GIQQMhnGNar6czlDl6WA"><img src="http://img-p4.pe.imagevz.net/profile1/92/16/3410c2c3d51e1a692515507efd43/1-248add2b3c407097-s.jpg" alt="Katrin Lenz"/></a>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsa_GIQQMhnGNar6czlDl6WA">Katrin Lenz</a></div>
</li>
<li>
<a href="/Profile/8tdVJyeco54Sp6cuBo1qsf2x5UBL1y2zXeLdhR8tymY"><img src="http://img-p1.pe.imagevz.net/profile2/18/92/3a4c44d4d5d94618547eda4bfc00/1-a61db3942e104dcf-s.jpg" alt="Antje Sander"/></a>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsf2x5UBL1y2zXeLdhR8tymY">Antje Sander</a></div>
</li>
</ul>
</div><div class="obj-innerbox">
<h2>Freunde (andere Region)</h2>
<div class="obj-subbar">
Patricia hat <a href="/Friends/Other/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs">38 Freunde</a> in ... </div>
<ul class="uniList float-left">
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/3716">GroÃ-Gerau</a> (1)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/3771">Esslingen</a> (3)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/3825">Miesbach</a> (1)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/3959">Leipzig</a> (12)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/3960">Delitzsch</a> (12)
</li>
</ul>
<ul class="uniList float-left">
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/3962">Leipziger Land</a> (5)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/3964">Torgau-Oschatz</a> (2)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/4018">Basel-Landschaft</a> (1)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/48985">Torgau</a> (1)
</li>
</ul>
</div><div class="obj-innerbox">
<h2>Freunde auf studiVZ</h2>
<div class="obj-subbar">
Patricia hat <a href="/Friends/Platform/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/1">23 Freunde</a> an ... </div>
<ul class="uniList floatL">
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/159/1">Uni Leipzig</a> (10)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/160/1">HTWK Leipzig</a> (6)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/295/1">HHL Leipzig</a> (1)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/368/1">Universität Zürich</a> (1)
</li>
</ul>
<ul class="uniList floatL">
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/627/1">BA Leipzig</a> (2)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/1606/1">DHfPG Leipzig</a> (2)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/2642/1">Diploma Leipzig</a> (1)
</li>
</ul>
</div>
</div>
<div id="profileRight" class="obj-box twothird">
<div id="Friends-Connection" class="obj-innerbox friendsColumn">
<h2>Verbindung</h2>
<ul class="obj-thumbnaillist">
<li>
<a href="/Profile/8tdVJyeco54Sp6cuBo1qsajYPqMm4gHSnUJiB7MaBIo"><img src="http://img-p2.pe.imagevz.net/profile1/91/2a/3a39897272b3606c147ebc52df09/1-38f1d96d822ff36b-s.jpg" alt="Schramme .."/></a>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsajYPqMm4gHSnUJiB7MaBIo">Schramme ..</a></div>
</li>
<li class="last">
<a href="/Profile/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs"><img src="http://img-p3.pe.imagevz.net/profile2/21/67/b2ac7a2b9c2fbb10ddb81d46c694/1-1c6178cadc937622-s.jpg" alt="Patricia Müller"/></a>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs">Patricia Müller</a></div>
</li>
</ul>
</div>
<div id="Profile_InformationSnipplet" class="obj-innerbox">
<h2>Information</h2>
<div id="P" class="accountStatusOnline clearFix hidden">
<br /><span id="status_8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs" class="mobilestatus">Plauderkasten ist an.</span>
</div>
<h3>Account</h3>
<dl id="Mod-Profile-Information-Account" class="obj-keyValueList" >
<dt>Name:</dt>
<dd>
Patricia Müller
</dd>
<dt>Verzeichnis:</dt>
<dd>
<img src="http://static.pe.meinvz.net/20110328-0/Img/Logos/mvzLogo15px.gif" alt="meinVZ"/>
</dd>
<dt>Mitglied seit:</dt>
<dd>25.01.2011</dd>
<dt>Letztes Update:</dt>
<dd>31.01.2011</dd>
</dl><h3>Allgemeines</h3>
<dl id="Mod-Profile-Information-General" class="obj-keyValueList">
<dt>Region:</dt>
<dd>
<a href="/Search/SearchSuper/platform/3/uni/48884/doSearch/1/rmC/1">Eilenburg</a> </dd>
<dt>Status:</dt>
<dd>im Berufsleben</dd>
<dt>Geschlecht:</dt>
<dd><a href="/Search/SearchSuper/gender/1/platform/3/doSearch/1/rmC/1">weiblich</a></dd>
<dt>Geburtstag:</dt>
<dd>
27.07. <a href="/Birthday" class="icon icon-calendar">Zum Kalender</a>
</dd>
</dl>
<h3>Persönliches</h3>
</div><div id="gadgets-list">
</div>
<div id="Mod-Groups-Snipplet" class="obj-innerbox">
<h2>Gruppen </h2>
<ul>
<li>
<a href="/Groups/Overview/104946e7f0460efd">ERZ10 Rote Jahne</a>
</li>
<li>
<a href="/Groups/Overview/85d1878aa2fcd4ec">ex-schiller-schule-schüler-eilenburg</a>
</li>
<li>
<a href="/Groups/Overview/a99fee2ca081b68e">Neulinge im VZ</a>
</li>
</ul>
</div><div id="Mod-Pinboard-Snipplet" class="obj-innerbox">
<h2>Pinnwand</h2>
<div class="obj-subbar">
<div class="obj-subbar-info">
Zeige 9 von <a href="/Pinboard/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/p/1">
9 Einträgen </a>
</div>
<div class="obj-subbar-actions">
<a href="javascript:;" name="showForm" class="showForm" >Etwas schreiben</a>
| <a href="/Pinboard/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/p/1">
Alle ansehen </a>
</div>
</div>
<div class="write-panel pinboard-write" style="display:none;">
<form action="" method="post">
<script type="text/javascript">
embedHidden = function() { return false;};
</script> <fieldset>
<div class="form-row">
<div class="hint hidden">Bitte schreib etwas.</div><label for="Pinboard_entry" class="floatL">Eintrag: </label><textarea id="Pinboard_entry" rows="6" cols="45" title="Bitte schreib etwas." name="entry"></textarea> </div>
<div id="Pinboard-Embed-Container" class="hint form-row"></div>
<div class="hint">
noch <span id="pinboardCharsCount"></span> Zeichen </div>
<input type="hidden" name="referrer" value="overview" />
<input type="hidden" name="userId" value="8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs" />
<div class="form-buttons">
<input class="button" type="submit" value="Abschicken" />
<input class="button" type="reset" value="Doch nicht" />
</div>
<input type="hidden" name="formkey" value="8bafddf482eedc492d479929c197f75234a3117d034b9ec2609b25a30208f616ea9e79ea94e46d52be0e91e405a097fe00e0ff2fb6fe220006ae151e00f7289d26946ac1262b5dab7d97825f45448b595c20f01501cd7fc82a89be5c1aaafd3d3548ec0ad49d8997a865ceee8a57b7de" />
<input type="hidden" name="iv" value="fdd1bc749d8638d8dca4a6cb7c614974" />
</fieldset>
<input type="hidden" id="emoticonArray" value="{"#alles-gute1#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100125_Pinnwandvisual_AllesGute.jpg","#danke1#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100123_Pinnwandvisual_Danke.jpg","#du-ich#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/visual-du-ich_2009.gif","#fit-wie-ein-turnschuh#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100208_Pinnwandvisual_GuteBesserung_2010_3_3.gif","#gib-mir-5#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100125_Pinnwandvisual_GibMir5.jpg","#glueckwunsch1#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100125_Pinnwandvisual_Glueckwunsch.jpg","#gruesse#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/allgemein\/101105_Single_Pinnwandvisual05.jpg","#gute-besserung1#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100208_Pinnwandvisual_GuteBesserung_2010_2_2.jpg","#hallo1#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/allgemein\/101105_Single_Pinnwandvisual04aVZsVZ.jpg","#herz1#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/herz.png","#heute-abend#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/allgemein\/101105_Single_Pinnwandvisuals10.png","#hut-ab1#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100125_Pinnwandvisual_HutAb.jpg","#ich-liebe-dich#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/liebe.gif","#knutscha#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/knutscha.gif","#liebe-regnen#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/regnen.png","#liebe-regnen1#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/regnen.png","#mag-dich1#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/allgemein\/101108_PV_Single08.png","#nie-wieder#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100208_Pinnwandvisual_NieWieder.jpg","#party#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/allgemein\/101108_PV_Single07.jpg","#schnell-auf-die-beine#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100208_Pinnwandvisual_GuteBesserung_2010_4.gif","#sei-nicht-boese#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100208_Pinnwandvisual_SeiNichtBoese.jpg","#sei-stolz#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100125_Pinnwandvisual_SeiStolz.jpg","#traum#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/allgemein\/101108_PV_Single02_2.png","#verzeihst-du-mir#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100123_Pinnwandvisual_Verzeihen.jpg","#viel-glueck1#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100125_Pinnwandvisual_VielGlueck.jpg","#wirklich-krank#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100208_Pinnwandvisual_GuteBesserung_2010_1_2.jpg","#wochenende#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/allgemein\/101008_PV_Single04.jpg","#aktiv#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64545&kid=112203&bid=324348&ts=1301517583","#aok-aktiv-strand#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64545&kid=112203&bid=324348&ts=1301517583","#aok-beauty-vote#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64545&kid=112252&bid=324725&ts=1301517583","#aok-chillout-strand#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64545&kid=112217&bid=324445&ts=1301517583","#aok-fun-strand#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64545&kid=112218&bid=324448&ts=1301517583","#aok-wellness-strand#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64545&kid=112240&bid=324699&ts=1301517583","#chillout#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64545&kid=112217&bid=324445&ts=1301517583","#woisttil#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=68340&kid=118669&bid=349721&ts=[timestamp]&ts=1301517583","#collbleiben#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64544&kid=89541&ts=1301517583","#colldrauf#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64544&kid=89553&ts=1301517583","#coolbleiben#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64544&kid=89541&ts=1301517583","#coolblieben#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64544&kid=89541&ts=1301517583","#cooldaruf#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64544&kid=89553&ts=1301517583","#cooldrauf#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64544&kid=89553&ts=1301517583","#herz-tanzt#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/flirten\/101105_Single_Pinnwandvisual03.jpg","#herzen#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/flirten\/101105_Single_Pinnwandvisual02.jpg","#kaffee#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/flirten\/101105_Single_Pinnwandvisual01.jpg","#mein-typ#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/flirten\/101105_Single_Pinnwandvisual7.jpg","#fruehlingsgruesse#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/100317_Pinnwandvisual_Herzblume.gif","#hurra#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/100317_Pinnwandvisual_Schmetterlinge.gif","#pusteblume#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/100317_Pinnwandvisual_Herzwolke.gif","#pusteblume1#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/100317_Pinnwandvisual_Pusteblume.gif","#sonne#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/100317_Pinnwandvisual_Herzwolke.gif","#zauberhaft#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/100317_Pinnwandvisual_Vogel.gif","#baby1#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/geburt\/100611_Geburt_Pinnwandvisuals01.jpg","#baby2#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/geburt\/100611_Geburt_Pinnwandvisuals03.jpg","#fratz#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/geburt\/100611_Geburt_Pinnwandvisuals05.jpg","#lieferzeit#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/geburt\/100611_Geburt_Pinnwandvisuals02.jpg","#sonnenschein#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/geburt\/100611_Geburt_Pinnwandvisuals04.jpg","#geb-dick#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/visual-geburtstag_2009_6.gif","#geb-geschenke#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/visual-geburtstag_2009_10.jpg","#geb-hase#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/visual-geburtstag_2009_3.gif","#geb-hund#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/visual-geburtstag_2009_2.jpg","#geb-kuchen#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/visual-geburtstag_2009_13.jpg","#geb-lumpi#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/visual-geburtstag_2009_5_neu.jpg","#geb-party#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/visual-geburtstag_2009_9.jpg","#geb-rente#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/visual-geburtstag_2009_4.gif","#geb-torte#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/visual-geburtstag_2009_11.jpg","#got2b#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=68701&kid=67874&ts=1301517583","#got2b-vote#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=68701&kid=70714&ts=1301517583","#got2be#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=68701&kid=67874&ts=1301517583","#got2be-vote#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=68701&kid=70714&ts=1301517583","#got2bevote#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=68701&kid=70714&ts=1301517583",
Untitled JavaScript (30-Mar @ 22:29)
Syntax Highlighted Code
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
- <head>
- <meta http-equiv="content-type" content="text/html; charset=utf-8" />
- [582 more lines...]
Plain Code
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta http-equiv="imagetoolbar" content="no" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<script type="text/javascript">
//<![CDATA[
var PHX_PAGELOAD_START = new Date().getTime();
document.cookie = "Pm=; path=/";
//]]>
</script>
<title>meinVZ | Patricia Müller</title>
<meta name="description" content="meinVZ ist eine kostenlose Kommunikationsplattform. Jeder Nutzer kann hier seine persönlichen Netzwerke pflegen, mit Freunden und Bekannten in Kontakt bleiben und neue Verbindungen herstellen - auch zu den Mitgliedern von studiVZ. Das Netzwerk aus studiVZ und meinVZ ist die gröÃte und aktivste Online-Community Deutschlands." />
<meta name="keywords" content="Studenten, students" />
<meta name="ajaxUrl" content="/Ajax" />
<meta name="platformId" content="Avz" />
<meta name="platformUrlOther" content="http://www.studivz.net" />
<meta name="staticServer" content="http://static.pe.meinvz.net/20110328-0" />
<meta name="oembedServer" content="" />
<meta name="noCacheFlag" content="20110328-0" />
<meta name="msapplication-task" content="name=Start;action-uri=http://www.meinvz.net/Home/;icon-uri=http://static.pe.meinvz.net/20110328-0/favicon.ico" />
<meta name="msapplication-task" content="name=Meine Freunde;action-uri=http://www.meinvz.net/Friends/;icon-uri=http://static.pe.meinvz.net/20110328-0/favicon.ico" />
<meta name="msapplication-task" content="name=Meine Fotos;action-uri=http://www.meinvz.net/Photos/Slideshow;icon-uri=http://static.pe.meinvz.net/20110328-0/favicon.ico" />
<meta name="msapplication-task" content="name=Meine Gruppen;action-uri=http://www.meinvz.net/Groups/;icon-uri=http://static.pe.meinvz.net/20110328-0/favicon.ico" />
<meta name="msapplication-task" content="name=Nachrichtendienst;action-uri=http://www.meinvz.net/Messages/;icon-uri=http://static.pe.meinvz.net/20110328-0/favicon.ico" />
<meta name="Search_getFriendlist" content="formkey=7d2110d8c5b06cfaf97f25156971a6cf8c70ebb621a1ab9bd0086289a38df9ea654f106452d50bcab4a0f896e64849962745febaf29517b0ace5ae2fe07ad61b743ac8c3e1278fe61d4a30278154383f584fc68003ec3e328704dd88575b6d218d7b9df69705590e17d93082e37bb141&iv=7a59f230e4a76d9a181ca9767231d965" />
<meta name="AccuseIgnore_accuseIgnore" content="formkey=8b5c897a66c361df5fa12332aa3c2f6e6105404eccf31729261b8e40808e56cfad70765961d396bd1f35d96d531929da15b36734100d815102100b70ca572526fbe7179552773002f26c501de1103cbf2d68b1f243541ad7c2c6633c3fb5cb718238a344d280dc959febf0874a62ec6952b531b765dca7fdd739979e937f63ea&iv=ab932745682873aab3d5247bfb47d555" />
<meta name="Photos_getSliderData" content="formkey=22f100f47f16f980b82f7090bebc3d8460ec19c19b00f0a8122db499915d98ae7b2f9461b7dda502bd7c12baf56455c25bb65206d8867d5687c921f94e393825b34b2b6a4cccc32ef7bd84b71341545b04b8f05f871e4ade3c7629bd95b68bc1078043bd539e9ee2b9e357e23017a557&iv=81554b2bdaf038aa0b8f3c70771fc501" />
<meta name="Friends_bigPathRender" content="formkey=cce1b9d29caf0c6fa4507383c5a3cf4109641fa41ab8b30a2c56553d31df55934846220c5c8d98f570042fb701d779afdbf564007605928b03ad77854adf30adf3e4715068b9bacbad761426acec839cd76920b2c52315c11dfa2916a4dd9a8a21bd9399ceb3835d5fae2fb764685dd7&iv=a3b96aa20dd57bc76d5253c19d7d9c22" />
<meta name="Photos_getUserAlbums" content="formkey=3068a34d3ce0a32980b31e6b7df41fc53c561906c4af579f64e843cfd030b77b7246d248dcd35078ff12dfc64e557518ac8a95b2bfe3d19ff20921aa8778f14fa8a7b71f5051ae1bb550d3779b4cf5d49388364ad5eecffcfde899bbc267f5b5106278cd452c3f2719acd63332bdcaa1&iv=0c92f0e9119b9ee4bfacab15a01bd830" />
<meta name="Photos_getAlbumPhotos" content="formkey=8b692cb187a573d05445d62fc4a601323b916ffe32f022aede59029d1d7a671ae22575b6a5e55ac18e2064c38d1882274bd7316c2601d7b4fec77cd1f55fb450c05c6cde3d353c91bcda869762fe5521e15d41f2627a2701dd226749489bfcc3adfc3e7463c0e27be5ee307d3a384203&iv=30bef3fe1b3a94782dbefb6551a9118e" />
<meta name="Link_imageUpload" content="formkey=684da12683e753422fdfe442086b78c73de5fb8d031ef625243bcb73d391789edc4ddca97dae3b19b343876fa6a2e2c86144a8431ed4efc626818b4e6647e6e0bad8b2e8b71d05f7656a5ad88c138330ea7d6db99f5210138428bee15a1ce5dd6e7c72536fa25d810d9d3b05d19f00ae&iv=bf141131087d3f1e6ca27f87e2d1dacd" />
<meta name="Link_embedImage" content="formkey=5b59c47270411b64beec6281abfd3323a32d6979474069b0ff54e484caaa502434e821aa1c3580cd58e7dd4baad89653a6e07cc5b43608da06a70f6e635a496a3329060b23cb58ec0072c828f46d715e98f880f092bb7eb3f81f4d305ae9f5dc1bec1a80c131639984343de1d4a1a896&iv=b2960fe4664fef6634b4d0bb8712be22" />
<meta name="Link_embedContent" content="formkey=701ab511f3c9c62ebe31148e9e2f5a9f15a4152f5bd80f7d49f3f0579989b6095c96b3d2902844ab5e441951289f29367b71fc71f8cfdf9c360e218299874f6d26f928760a6b402512c8aa43811a659aee20e79cbe0b8e463c13450d19ad029914b372a350dcf6eee89668e59e9e07db&iv=8f6a246da90f5c7807dd39e8719568e9" />
<meta name="Gadgets_CreateUniqueToken" content="formkey=5d821ac1bde379b54b6621b2370532430b2b1e408ec3e8d21896086e60ce4fc90a85b0bcc651274bcf768a44d202e3c15e8f3d49f96f39610a8043bc91df99885bef75b1f8f74dd73270825244ca3174959f2e739e9195c76440f8cced87211c6549b512179473f3907aba651a55e27d&iv=1e56b134a21b24bdb4d4cd4d9f187ce2" />
<meta name="Gadgets_getVcardInformation" content="formkey=2ae80fa457cd4b0321fcd9f28af0f1169c944a84eca4875e87ac63f850a382cff466bd8d5ae749ff808c42374485331b52cf5f4fe4912344b91e73560ee37148494f0d23f0de828499c334a81621c986512c9291f3b227219477805897ac7e4bedec489a71bbe1d6f57c0ecb116330f2&iv=23c9b43f39491bca9f0b6e26048feb1b" />
<meta name="Vcard_getProfileData" content="formkey=0550739c9c89807c260e4b83ed2bf786760ba90d1f72a377ff7a0d61f3586420d8c3c9731402d3fad467c151163efb5bfdfee306ffade6ad599aab52fd7661c219df0512ec2894ccc292f7c982dd8ec6404736fb658815ed60a3b43b8fab9b7c5c7dd43954ae6acd31d95bae57b50d14&iv=1e106702f11150bd6d3598af80c2e132" />
<meta name="Vcard_getVcardData" content="formkey=cdac9968f34fa74b8eb400b94d9b7dead755aa7ce423425991e9cd1c3a132bf81935d5a5153267fa8addcc29a7dee0beb85d2e7b9ccfde55996bd8187c188934ab97e5c31a01ba548389df6e216ac5c5d69fc6a6c3af82d316fa7550b053e3572fe48f17d808afccf4f9589cdac0b567&iv=4dadde1b8915654adb1b2e107b23a054" />
<meta name="Gadgets_getVcardForm" content="formkey=4e26171d6e917861642cd1bf645f8464ebe1292a7d408cca58c9d9f27abeca4913fe756d7a1fdee3d81cef9e6136d5cbe6b4d5202d84e3961f9c723bc69fd870724f7a8d4c6f281e98ac32adeae0b50f42bad2e65d4967c498f84d3c46e27f4ff833d360389e1e1b0bac4c332b6c3e9d6b04041ab0dff3dd09c8366540c68ef7&iv=ae74ca5a56b9f153c7df030a71cd71c0" />
<meta name="Gadgets_GetSecurityToken" content="formkey=398ef07989c77c25c295e9c0926fa1896ec1ca56c05105d80241848317c810ed7b4db1b61250ae4f873e8f3eaa4664ebc9db14525d3c19b49fbddc9e1c2e2893a67369826dc85536d363a4ede87da569aac0984decdfc0b796dd4923a829b78445631ba2e1616a270f85683d18925fd3&iv=0e16494cc79b6dac125747c67b2b976b" />
<meta name="Gadgets_getAdTag" content="formkey=924c514c504fa0b183aaaf6c2f22f11d396efc07575f32c377a0534b91a30aea0db1c514e8ca5197360e902973b65e9b36df6b9ace6043c26bcc2ac68a1d8b52e6fd15956ea7ff9d7d7d4d4817545c0b721443ea11d76cb3a5d8190b2c7215c0b80ae0ecc9fcc5a1012a36ef5a85f619&iv=7e5c0713ac9148523b8d60e6c580e3ba" />
<meta name="Gadgets_writeMessage" content="formkey=b1ddf17a8252674be13e2e31e4198a3a977fc994374af474267518232c84f126aedb84b9ecb42a60a237d0a6c96eac3aa8636c8f06329bf82176c0c16b9e88b1238ac7a866030d404e730a7dfa1c759f167d4ad82481c82259c3855519cef7a5884608aaab3983adfe1d559d01108998&iv=1b1c5b5f0d4515c07d7953cf67fa889f" />
<meta name="Gadgets_replyMessage" content="formkey=636b1356def289c71f313efe24304a4561c6f52a9561cd81c7ed18bb7c1b5f936f4bd7f29cc3f225ccab2dae91f687843ec6fa3f8b991e1e031ad5a6ee7147af744c60f47fee3ed3ce9209600cdbbc70b2b1a1f771a5aeaa39681ba7d7c62cebed17365e88ab6aa90ea9f19e7641045e&iv=9b4b5bfbcbfdf4b750626ffd27e19c40" />
<meta name="Gadgets_pinboardMessageDialog" content="formkey=bc8bd145d6c4ebf473ef2548d17b14da820cdfcc6935fc46848485fdc3ec7b7c11aebcb9ded5db72e7886e5471f57d9f9e8c3b4392b78b912844570c7be09a23587636434b9afa48000c312fe87e55d186fe48add73af795ec1261afe3f5c3d24aa158a33631b1e9d636be9684d7ab5163e0db817535810d44719e5417a4c21e&iv=150f85d3f26878925a327d99b40346e3" />
<meta name="Gadgets_pinboardMessage" content="formkey=b6d208e3b05a2a0885fd283a1cbd4bd298a6e1053dd8389fcddb0dbbf965d18f6a2a3b645ed8995ea329b3871d7e07649ee2f2356e0a2868397c8d50db39200d05c7d10c4fd575f27f144aae965a9669f45ac2daca70c1773d1d70b907fc2805563cf0801cdc945684c47cea6f986302&iv=b02e31cb91e5709419719f61203cf022" />
<meta name="Link_getEmbeddableGadgets" content="formkey=76f2ddc3ae94b24ff200cd099ae4c0adf93fbe775aa5d40904894e78a84da8e0726b4adb6bd7dfcdeec1a6ec075d95a3ed91fcf9610c32996fc42ccece073e0f4350ff6343cbede759187ff9bee80932c6bcf92d5b20cda95c6e0182918c2ae1aee6bdbcb767b898eae6b1b4d1ea63c8b2c844637bab714814e837b878aea8e0&iv=7efa455be536d511426d98ae12663177" />
<meta name="Link_getEmbedProviderView" content="formkey=e0e6bbd4057b3b251a3d2e1cc890eb0e09acc2d1d1cbfd92cbd7c1588c8ac96bb67ceaf4a9f40ec7e8e6ecbd52c79e41a2408646464d379a8e6409437c05f84ef857c882142a5946adc7c1554da6ba80df8470a10944ebb15fde7691623e044a1266ace239a05d3383fede02a1e11cad36ea26c88a3469dd3aa0be029bc10bb4&iv=42012ec94f0098826db211d8989f3837" />
<meta name="Link_getFlashUploadForm" content="formkey=34d61d8bb615604b9c9ae5e3f333e05f54e94c343391dae6d855305800ef29c56d896ef9b23adc68b0551f50af91263d69e283a5d1ea326ef4e0b151dafa9cb3560512ce7b95cdda416ba078050da9b4c1c9de70529874e18954c1b2af1077c7580c7559ad852158a8c18174522b5a8ffa72cf6ce140df2e0883c6522ece140b&iv=0773f2cff4f789981152c10010546760" />
<meta name="Groups_ChooseGroup" content="formkey=ffccbecd0420e6f9147ccf7484e03b2dc02b5487672c1be7ea7ddb8bdb28a7acedec26a0c2aa9e5b419d3f637b54a0c87f6873762447fe61fbb20eec8302261b9cb1f4bd0ee0ee2e0ee8a9508b40f7fbe6d76d735da1fa98ea934edfd19787065cf7f8b65cb9f8828a82446c71f204ba&iv=03f8f8a1b6f773eba8735325059f142c" />
<meta name="Profile_ChooseProfile" content="formkey=c825a64acfba1999ad43b87f24c0d70fd30990d23db380bc33780e19b4b2aac3b8aeae9e3960683734005941cb71d181427326ddf25a0840944d6552977bee38c69e8a0210c485a4d6ffc2881f38f3de619f575a5498d98791fcb179d0a1d4879294c2bb60cb4ef9dc525e223dca2578&iv=8bc6125fbf9d6befa872651060134d60" />
<meta name="Pinboard_ChooseVisual" content="formkey=621af4ec6ac020f3ad3f0e482f7fae693a26803e63b40eb08fa718f63a7a4b797aeea39f652cb59a5a5e53c4dfdd2a854a0551e0df89273c0b48344af6452ece2036ff6cce34b8fbeb33d3e58ee9ab8ee4a1e7dd1234dd672ea4de4c1f9884baaf8811ac3e9150ecbf622394733b400d250b15dec38c9f96088baf73cac0efdd&iv=471e58e61b5eec79a7f405bb4c916726" />
<meta name="Gadgets_getStaticKey" content="formkey=7eee9345b9b0b2b77949cbfd2f594efe78f1c7844d785b3fe6311933198822a0361366f4740c8420584c5d102afdf65c168a50d2e82672975249c2d8558a7705472aed36d9137d30dce96961f1731bcb7507b2373bbe527f1d70c04c02bbb727b57d1f9421ebee378db2e1456a94f3a3&iv=37731011e748fd8888601c97b6a831a6" />
<meta name="Gadgets_feedEntryDialog" content="formkey=3389fc5df7cea6441c0115a5917dff8d9cc4b52094f57d1a037299d0acf7e3e76d1ef525f5e5e17f9be53e6a87daed4cc5cf4f43a938eee44533eacf59cab32ecdc435f014c06fa7f28cd80c6a5a2c21a94dcf8fae5de62d9e7c9a834320bae5373d33ae6e14268920c5ffe3c9145113f2620a37f48c868096b8d235c4559194&iv=3c97bf944fa03c6784dc790b34840678" />
<meta name="Gadgets_feedEntry" content="formkey=6184ff90cf40b380ed5a21e64119d891f58c6e68be88d7acf679066719181d174f760119088ba8f78768a48d44715da68f46ff055c27fd55494fb01dfde668d88892770a2baef1359ece4ee02265843033dc39a9beeb84e7e03c22c36b5b4f91862bd990d2bbc4f2b1adf2d8eaac272b&iv=e59b436c63ce5b52e513535d8af240f1" />
<meta name="Gadgets_getPermissions" content="formkey=cdd5e5ac365ca3bf92747e118dcb1e824a80efba9b8b5a36b3a96068d4646021eb6b21b85064c7a29fc943dd9e530b3d514e4d9746c6555c23f2e5bf5ce410a7b6f53c0d8207778d3aa288ca4f3bfccdfb742676c8d7e6544f4b85840b0ea2865d0bc12338dbc3ead25be27efad69fce&iv=2c06e93ac9527a3403d9f79a541a2049" />
<meta name="Link_postFeedEntry" content="formkey=50fa7fdeb0e264dc9ff1bb80892730376b2d78d59286304a8dc62a6d1f6fd624460d7d2ee8be9e1aa75d9593a1a6e6d9d032d750e2aa79c8ec2321566d543197f811c30ab822b1aa59091290af938f82e5594a9bead151be9067190732c3b0d94f7d89fe7738f627e2c63eec3d2db33e&iv=cb79a08293053f26a070ca4d89b6f82b" />
<meta name="Link_sendMessage" content="formkey=3e31fa5c52305ee649ac815853c18060d18ff16615990cc34de2c0dcdfb4222f8eccd4dd5bc0735d633390e5520652db9860d483ab09688dd78da581da399b7e1b22d6f4fe0faa8135abe811bc7e50ab369a6ceb48e7933ddef371f07f8644be&iv=cadd909eb08ab376c061fa8c5d2194c1" />
<meta name="Badges_postBadge" content="formkey=e94d9dfc3b470469a16f891223bf81dd788a9911cc1d3309bac2c4b735138581144e69e3d6b7ee276c7716bbb1d3152d6b499fb71604e9587da69f1b99363540024a1e816c824c4d3de19a1a45efdbac2d19dc6e9eefd6ee93fb14a47355da03ce0f5d555d0453c7b0f625db08e46341&iv=e2539520871c7e048779c460d854958a" />
<meta name="Profile_getUpdateImageForm" content="formkey=955f22e314cbdf58de553f7f1f5e35ceb68725682f1d8562e002448e9e7591762584c9cbd5b4a4acfe91b00ac5ec7864e80dcb899f9814c3fc1094b1eefd07ad01d9842766e3a1d8502912baacaef692ba6594db222f05b301d4274dd94a85c7ecb100e5c7b25ed83f5f65bc30158ff882a409a2d81a14e13d50fdc4b423ab0c&iv=21c17695f6980457e678a270b741742a" />
<meta name="Profile_updateImage" content="formkey=412513b80b01c947c5110cdab7870e17333aad59ef19f53776d7f61a0b4fa241e134bb44e953897dcb1c113ae3195f42228a501fdeca58a58f802c4f4caa4c7fce4036aafe4254bc2b319e66874db8ea83958cb0fcd989e7312c7cd3daf0949c204f3455ba4fd769d0d95dd21385dd1e3d872f8c2386f0ff21a7a0def4ea9e8a&iv=d4f7bba9146813f2e0f674db6ef9160d" />
<meta name="AccuseIgnore_accusePinboardEntry" content="formkey=85b3374a96ef008b105cf52c0ef4f5ddb4b5f4c258ad28c6eb078a87beb55d2e3e1f64b3d3dc6ff6a845616078f5c4abff915c39bc47e2bbb5222dd7a9e8961726374146d161848876bf9049649b9f447d5411efcb3bee1d3d62b73168e3cf2cb0be01f2fac8df310a780cc4765f3f2ea48e5978e5991fe05a967577fd60b291&iv=a7c1ed999f2c220a348905dca28c3931" />
<meta name="Pinboard_refresh" content="formkey=5179d8ff66e52f422f8fa91ad61f542e708e6945f8fa5b045711bda7a518474fcdd94207db4266b3ffc4768ae3b4033bcf4b89fa5b6d39346af1d3725866e8a54a79ad873e9d4528f223476f0eee77d0f3fa97a77b7231d38932b0b4d327aa8adb6c0be04f02bd2d11dbc45d01f5b260&iv=199f31e6ca392a2124c10e30e016bb05" />
<meta name="Pinboard_delete" content="formkey=9a8fdcee80dfa11192e828defd804f050c99154b895322fc375864a298f23e1ee5f91ee6789b795d6207bb5f556d410568c9333a85f57fe4973b5b7be4a30761f962968e206d0a62c1391381196dfdb687730500ac22caa2b16aeccba2afe557e9eb8878b8af67389df269d76e8d9803&iv=9dab9f9804dda9693d7d463248bb2c6b" />
<meta name="Chat_token" content="formkey=cca81c658896bcbad9b62822021b721eafef55d1a4f516cb12c817875a6a96b18e81a3471125e61181a612ba45f395a17e65bab41913240f138278de013868283cb08b3ee155b42e1c95b5309e81fe27e660dadd4b91a4439833d796689d234d288af9878ea7be196fa947703430da19&iv=876c5e1c53bde96bf2b040d08c7ec25b" />
<meta name="Chat_setStatus" content="formkey=834bef959c28e306e990cdf1d06fcd58f09f8dae5226628a3a65531a3c08bfb31071e0b50cedade61850f923f29c83e09813c4a230961a0126d351102b250024dcb8cadf05d49402a38ff49c8f2220a17474dec3e568b8f03a48fc0f74fbae08902b1b803dbac81956a0993b90add176&iv=d5308a7991ddd9f8d9fb4f70bed0298b" />
<meta name="Friends_addFriendDialog" content="formkey=13b023cfc761bdc60a8f1124c312d67584508884aff6a7c16673db6cb0421514d6d415bf85e9fae0155ec91ddcd8012bf070082dbff1aa94aed622d8a7a4c387e7fedea3e4fde1cde564809d0239c2c5418ed917ebc2c6a4fda781fda9576605fb2ff6880ad913da6be0dbaf90f3e850&iv=bca21c311aafd1fd5b1313ef2062ae4e" />
<meta name="Friends_addFriend" content="formkey=aa2ea405afd18224ca2550ee9bd6fc0d75269469d21d5e37441861691edb6cb1c5a4161e45c6ca00289f0c89a5e25ee16507d50e96ce80768f68847bc733985768e46d9b5e78afc55898f931aeca2b24df18c53af9df8fefa4864859e9eb8863&iv=49a37ffacc4f6f53bc9078c2b67c7346" />
<meta name="Uservoice_feedbackDialog" content="formkey=23dae784a7d029db14aa25f4448f43f6e287d67949ed45909da45f56ec46bc3e7a4a4467b41f9ac8b6b6ddc7112d8efcfe672db5f1de8147cf81a20ee466924186a1c0107dda1be0ae41c268f040886b4563d8ff81699ea37e726f10faa97c0ec27ab03e12917444ce387cfe6d474b52&iv=8e3fd64881332b50197b7d1a1f69062f" />
<meta name="Polls_answerPoll" content="formkey=8f993c375c4402c966bc8fca93322d32dd67d0cfaebd6d74a3c6f6648e6a41d1ad2fec1d382177d2b0f5fc8d62ad5a1629265e417c368ea54b219b66135dc88ddc73d79ba79c75945e5cf0291b53b2a74e15c8c4f4d4b3c9461fc0ff7becc497121ed870c617e852a481a1d239ebf80b&iv=ca8cf99b43561c4788cbd7350e46bb4a" />
<meta name="Polls_diagramView" content="formkey=5ecc27bfc42bff4b7551103822fa5fbcb69fe95eb53c221a3835d2663e2fda9f495ea0db9691fb1977770d9fe987168edd2c49ca9dd33a9dad4d2eb45af0035fe4076874c76f1399f2d47231688c4d8a4c90b7ba00f88329964726554baca3621070bb70c57c6d30aed9fcfeebe1c636&iv=8969873fd9476891c53466751beaf600" />
<meta name="activeModules" content="Profile,Search,Login,StaticContent,Cooperations,Chat,Plauderkasten,Gadgets,Info,Ims,Friends,Advertising,Uservoice,Photos,Privacy,Blog,Messages,Gruscheln,Link,AccuseIgnore,NobleProfile,Microblog,Education,Work,Groups,Pinboard,VoApi,Badges" />
<meta name="pageletName" content="Profile.Profile" />
<link rel="shortcut icon" href="http://static.pe.meinvz.net/20110328-0/favicon.ico" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Base.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/AccuseIgnore.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Friends.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Education.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Work.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Gadgets.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Gadgets/Gadgets.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Vcard.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Groups.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Photos/PhotoUpload.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Photos/Photos.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Link.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Buschfunk.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Mod_Pinboard.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/Profile.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/FestivalRss.css" />
<link rel="stylesheet" type="text/css" href="http://static.pe.meinvz.net/20110328-0/Css/ManageFriends.css" />
<meta property="og:title" content="Patricia Müller" /> <meta property="og:image" content="http%3A%2F%2Fimg-p3.pe.imagevz.net%2Fprofile2%2F21%2F67%2Fb2ac7a2b9c2fbb10ddb81d46c694%2F1-1c6178cadc937622-s.jpg" />
<script type="text/javascript" src="http://static.pe.meinvz.net/20110328-0/Js/build/resource-core.js"></script>
<script type="text/javascript">
//<![CDATA[
var brs = navigator.userAgent.toLowerCase();
function Adition_BrowserId() {if (brs.search(/msie\s7/) != -1) {return 9;} else if (brs.search(/msie\s8/) != -1) {return 10;} else if (brs.search(/chrome\//) != -1) {return 11;} else if (brs.search(/safari/) != -1) {return 8;} else if (brs.search(/opera/) != -1) {return 7;} else if (brs.search(/konqueror/) != -1) {return 8;} else if (brs.search(/msie\s6/) != -1) {return 3;} else if (brs.search(/msie\s5/) != -1) {return 2;} else if (brs.search(/msie\s4/) != -1) {return 1;} else if (brs.search(/netscape6/) != -1) { return 5;} else if (brs.search(/netscape\/(7\.\d*)/) != -1) {return 5;} else if (brs.search(/netscape4/) != -1) {return 4;} else if ((brs.search(/gecko\//) != -1)) {return 6;} else if ( (brs.search(/mozilla\/(4.\d*)/) != -1) && (brs.search(/msie\s(\d+(\.?\d)*)/) == -1) ) {return 4;} else {return -1;}}
function Adition_OSId() {var os; if ( (brs.search(/windows/) !=-1) || ((brs.search(/win9\d{1}/) !=-1)) ) {if (brs.search(/nt\s5\.1/) != -1) {os=3;} else if (brs.search(/nt\s5\.0/) != -1) {os=2;} else if (brs.search(/nt\s5\.2/) != -1) {os=8;} else if (brs.search(/nt\s6\.0/) != -1) {os=9;} else if (brs.search(/nt\s6\.1/) != -1) {os=10;} else if ( (brs.search(/win98/) != -1) || (brs.search(/windows\s98/)!= -1 ) ) {os=1;} else if (brs.search(/windows\sme/) != -1) {os=1;} else if ( (brs.search(/windows\s95/) != -1) || (brs.search(/win95/)!= -1 ) ) {os=1;} else if ( (brs.search(/nt\s4\.0/) != -1) || (brs.search(/nt4\.0/) ) != -1) {os=4;}return os;} else if (brs.search(/linux/) !=-1) {return 6;} else if (brs.search(/mac\sos\sx/) !=-1) {return 5;} else if ( (brs.search(/macintosh/) !=-1) || (brs.search(/mac\x5fpowerpc/) != -1) ) {return 5;} else if ( (brs.search(/unix/) !=-1) || (brs.search(/x11/) != -1 ) ) {return 7;} else {return -1;}}
function Adition_ResId() {if(screen.width==640 && screen.height==480) {return 1;} else if(screen.width==800 && screen.height==600) {return 2;} else if(screen.width==1024 && screen.height==768) {return 3;} else if(screen.width==1152 && screen.height==864) {return 4;} else if(screen.width==1280 && screen.height==1024) {return 5;} else if(screen.width==1600 && screen.height==1200) {return 6;} else if(screen.width==1280 && screen.height==960) {return 7;} else if(screen.width==1400 && screen.height==1050) {return 8;} else if(screen.width==1280 && screen.height==768) {return 9;} else if(screen.width==1280 && screen.height==800) {return 10;} else if(screen.width==1440 && screen.height==900) {return 11;} else if(screen.width==1680 && screen.height==1050) {return 12;} else if(screen.width==1920 && screen.height==1200) {return 13;} return -1;}
function Adition_Flash() {var f="",n=navigator;if (n.plugins && n.plugins.length) {for (var ii=0;ii<n.plugins.length;ii++) {if (n.plugins[ii].name.indexOf('Shockwave Flash')!=-1) {f=n.plugins[ii].description.split('Shockwave Flash ')[1];i=f.indexOf('.');f=f.substr(0,i);break;}}} else if (window.ActiveXObject) {for (var ii=10;ii>=2;ii--) {try {var fl=eval("new ActiveXObject('ShockwaveFlash.ShockwaveFlash."+ii+"');");if (fl) { f=ii; break; }}catch(e) {}}} return f;}; function Adition_Trel() {return '&prf[iug]=14414616644375930622&prf[fhj]=001&iqh=14414616644375930622&ipt=0';};
var ad_wid = Math.round(Math.random()*2000000000);var ad_count = 0;var ref;try{ref=escape(document.referrer);}catch(e){ref='-'}var os;try{os=Adition_OSId();}catch(e){os=''}var browser;try{browser=Adition_BrowserId();}catch(e){browser=''}var screen_res;try{screen_res=Adition_ResId();}catch(e){screen_res=''}var fvers;try{fvers=Adition_Flash();}catch(e){fvers=''} var adition_tag_set=false;
//]]>
</script> <script type="text/javascript">
//<![CDATA[
var requestToken = "WphF-rm2VK6viLOcH_d0x4O6PRV7jzVGc20QXg76fTQ";
//]]>
</script>
</head>
<!-- Du liest Code? Lies auch: http://kurz.nu/r/20 -->
<body class="avz gecko gecko20">
<div id="Grid-Wrapper">
<div id="Grid-Advertising-Top">
<div id="ad728x90">
<script type="text/javascript">/* <![CDATA[ */document.write('<scr'+'ipt type="text/javascript" src="http://studivz.adfarm1.adition.com/banner?wpt=J&sid=50474&wi='+ad_wid+'&ac='+(++ad_count)+'&ref='+ref+'&os='+os+'&browser='+browser+'&screen_res='+screen_res+'&fvers='+fvers+'&prf[iug]=14414616644375930622&prf[fhj]=001&iqh=14414616644375930622&ipt=0&mdev=100"></scr'+'ipt>');/* ]]> */</script></div><script type="text/javascript" src="http://static.pe.meinvz.net/20110328-0/Js/meetrics/adam100111.js"></script> </div>
<div id="Grid-Advertising-Right">
</div>
<div id="Grid-Page">
<div id="Grid-Page-Left">
<div id="Logo">
<a href="/Home" rel="nofollow" title="zur Startseite">
<img src="http://static.pe.meinvz.net/20110328-0/Img/logo.png" alt="Logo meinVz, Link zur Startseite" />
</a>
</div>
<div id="Quicksearch">
<form id="QuickFormSearch" method="post" action="/Search/QuickSearch" class="obj-quicksearch">
<fieldset>
<div id="resultboxAutosuggest"></div>
<div class="labelinside">
<label for="searchfieldAutosuggest">Suche</label>
<input type="text" name="name" id="searchfieldAutosuggest"/>
</div>
<input type="hidden" name="quickSearch" value="1" />
<input type="hidden" id="disableAutosuggest" value="0" />
<input type="hidden" name="formkey" value="2a9375bd1571ee8f93d90ff84c62027e332d580c5d77c8a70982da4cfec337eae7701e54f35df0ce2c8d0886ff294d9b60a8dcea8f7b1b9736fb3da761727f81e93947158b971a938187727360988b22fa9ba852490cb946d8b82a8e104ff2424f2552ce6c2c46c5e893eead8317f6f3" />
<input type="hidden" name="iv" value="4cede1bdd9a7e62ed209766a2ab75d10" />
</fieldset>
</form>
</div>
<ul id="Grid-Navigation-Main" class="obj-linklist">
<li><a href="/Home/tid/101" rel="nofollow" title="Start">Start</a></li> <li class="clearFix"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsajYPqMm4gHSnUJiB7MaBIo/tid/102" class="left" rel="nofollow" title="Meine Seite">Meine Seite</a> <a href="/Profile/EditGeneral/tid/109" class="right" rel="nofollow" title="bearbeiten">bearbeiten</a></li> <li><a href="/Friends/All/8tdVJyeco54Sp6cuBo1qsajYPqMm4gHSnUJiB7MaBIo/tid/103" rel="nofollow" title="Meine Freunde">Meine Freunde</a></li> <li><a href="/Photos/8tdVJyeco54Sp6cuBo1qsajYPqMm4gHSnUJiB7MaBIo/tid/104" rel="nofollow" title="Meine Fotos">Meine Fotos</a></li> <li><a href="/Groups/tid/105" rel="nofollow" title="Meine Gruppen">Meine Gruppen</a></li> <li><a href="/Gadgets/Overview" rel="nofollow" title="Meine Apps und Spiele">Meine Apps und Spiele</a></li> <li><a href="/Messages/tid/106" class="Navi-Messages-Link" rel="nofollow" title="Nachrichtendienst">Nachrichtendienst <span id="messages-navigationlink-unread" data-unread="0">(0)</span></a></li> <li><a href="/Account/Account/tid/107" rel="nofollow" title="Mein Account">Mein Account</a></li> <li><a href="/Privacy/Settings/tid/108" rel="nofollow" title="Privatsphäre">Privatsphäre</a></li> </ul>
<div id="LeftsideBox" class="box rounded simple-ext">
<div class="innerbox">
<p>
<a href="http://www.meinvz.net/C/2637">Ohne Seepferdchen</a> kommste heut nicht mehr weit.</p> </div>
</div>
</div>
<div id="Grid-Page-Center">
<div id="Grid-Page-Center-Top">
<h1>Meinverzeichnis / meinVZ</h1>
<ul id="Grid-Page-Center-Top-Navigation">
<li><a href="/Language/en" rel="nofollow" title="English">English</a></li>
<li><a href="/Search/SearchGlobal/rmC/1/tid/121" rel="nofollow" title="Suche">Suche</a></li>
<li><a href="/Invitation/Invitation//tid/122" rel="nofollow" title="Einladen">Einladen</a></li>
<li><a href="/l/help" rel="nofollow" title="Hilfe">Hilfe</a></li>
<li><a href="/l/mobile_info" title="Handy">Handy</a></li>
<li><a href="http://blog.meinvz.net" rel="nofollow" target="_blank" title="Blog">Blog</a></li>
<li><a href="/Logout/2b069b333aca8e4d37fc82f3eed18f15/tid/127" class="logout" rel="nofollow" title="Raus hier">Raus hier</a></li>
</ul>
</div>
<div id="Grid-Page-Center-Header">
<div id="Grid-Page-Center-Header-Menu">
<input type="hidden" id="Chat-Header-PrivacyUrl" value="/Privacy" />
<input type="hidden" id="Chat-Header-PrivacyUrlSealed" value="/Privacy/Seal" />
<input type="hidden" id="Chat-WindowUrl" value="/Plauderkasten" />
<div id="Chat_Header" class="">
<div id="mini-chat">
<span id="chat-active" style="display:block">
<span id="set-my-status" class="">
<span id="set-my-status-icon" class="my-status-offline" style=""></span>
<span id="my-status-selector" style="display:none">
<p id="my-status-selector-online"><span class="set-my-status-online"></span>eingeschaltet</p>
<p id="my-status-selector-away"><span class="set-my-status-away"></span>abwesend</p>
<p id="my-status-selector-offline" class="active"><span class="set-my-status-offline"></span>ausgeschaltet</p>
</span>
</span>
<a id="header-text" href="JavaScript:void(0)">
<span id="online-status-text">
Plauderkasten </span>
(<span class="online-users-counter">0</span>)
</a>
</span>
<span class="target-amount-unread twodigit" style="display:none">
<span class="target-num">
</span>
</span>
<span class="target-amount-calls twodigit" style="display:none">
<span class="target-num">
</span>
</span>
<div id="message-sound"></div>
</div>
<div id="Sound-Player-New-Message" style="height: 0px; overflow: hidden;"></div>
<div id="Sound-Player-Incoming-AV" style="height: 0px; overflow: hidden;"></div>
</div>
<!-- Start Lovely Code for Mini Chat Notifications -->
<div id="notification-new-message" style="display: none;">
<div class="notification-text">
<span class="target-username">Vorname Nachname</span> hat Dir eine Nachricht geschrieben. </div>
<input class="button" type="button" value=">Lesen" onclick="javascript:openchattab()" />
<input class="button" type="button" value=">Ignorieren" onclick="javascript:closenotification()" />
<div class="clear"></div>
</div>
<!-- End Lovely Code for Mini Chat Notifications -->
<div id="gadget-menu-header">
<ul>
<li>
<script type="text/javascript">
var popupdata = popupdata || {};
popupdata.href = "/Gadgets/Popup/489";
</script>
<a href="javascript:;" class="gadget-featured-link-popup">
Röhre <img src="http://static.pe.meinvz.net/20110328-0/Img/tv.png" alt="Röhre"/>
</a>
</li>
</ul>
</div> </div>
<h1 class="ellipsis" title="Patricia Müllers Seite (Eilenburg)">Patricia Müllers Seite (Eilenburg)</h1> </div>
<div id="Grid-Page-Center-Content">
<div id="shoutboxJs" class="obj-shoutbox hidden">
<div>
<p id="shoutboxJsSuccess" class="success hidden"></p>
<p id="shoutboxJsError" class="error hidden"></p>
</div>
<div class="close">
<a rel="nofollow" href="javascript:;"></a>
</div>
</div>
<div id="Mod-Profile-View" >
<div id="profileLeft" class="obj-box onethird">
<img src="http://img-a3.pe.imagevz.net/profile2/21/67/b2ac7a2b9c2fbb10ddb81d46c694/1-1c6178cadc937622.jpg" class="obj-profileImage" id="profileImage" alt="Patricia Müller" />
<ul class="obj-linklist">
<li><a href="/Friends/All/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs" >Alle Freunde von Patricia</a></li><li><a href="/Messages/WriteMessage/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs" >Patricia eine Nachricht schicken</a></li><li><a href="/Gruscheln/DialogGruscheln/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs" >Patricia gruscheln</a></li><li class="user-showlink"><a href="/Link/User/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs" >Patricia Freunden zeigen</a></li><li>
<a id="accuseIgnoreLink" href="/AccuseIgnore/AccuseIgnore/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs">
Patricia melden / ignorieren <input type="hidden" id="accusedUserId" value="8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs" />
</a>
</li> </ul>
<div id="MicroBlog" class="obj-innerbox hidden">
<h2>Letzter Funkspruch</h2>
<div id="microblogContent" >
<span class="microblog-guid hidden">8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs</span>
<span class="microblog-ownguid hidden">8tdVJyeco54Sp6cuBo1qsajYPqMm4gHSnUJiB7MaBIo</span>
<p class="microblogHistory"></p>
<div class="microblogMeta no-float">
</div>
</div>
<input type="hidden" id="MicroBlog-Emoticons" value="{":*":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_21.gif",":-*":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_21.gif","x-(":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_13.gif",":-&#38;":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_12.gif",":-s":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_10.gif",":-o":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_9.gif",":-x":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_8.gif",":oops:":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_7.gif",":-p":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_5.gif",":-((":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_6.gif",":-(":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_4.gif",";-)":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_3.gif",":-D":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_2.gif",":-)":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_1.gif",":)p":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_14.gif",":)":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_1.gif",":D":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_2.gif",";)":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_3.gif",":((":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_6.gif",":(":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_4.gif",":p":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_5.gif",":\">":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_7.gif",":x":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_8.gif",":o":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_9.gif",":s":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_10.gif","|-)":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_11.gif",":&#38;":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_12.gif","x(":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_13.gif",":h\u00e4:":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_15.gif",":vz:":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/mVZ_Emoticon_15.gif","8-x":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_17.gif",":hmm:":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_18.gif",":emo:":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_19.gif",":yo:":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_20.gif",":kuss:":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_21.gif",":alien:":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/pvz_smilie_22.gif","$%&#38;1521":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_12.gif","$%&#38;1747":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_13.gif","$%&#38;1853":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_14.gif","$%&#38;1897":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_15.gif","$%&#38;1899":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/mVZ_Emoticon_15.gif","$%&#38;1903":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_16.gif","$%&#38;2189":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_17.gif","$%&#38;2276":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_18.gif","$%&#38;2376":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_19.gif","$%&#38;2454":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_20.gif","$%&#38;2365":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_21.gif","$%&#38;2471":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_22.gif","$%&#38;2498":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_23.gif","$%&#38;2571":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_24.gif","$%&#38;2588":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_25.gif","$%&#38;3333":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_26.gif","$%&#38;4444":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_27.gif","$%&#38;4578":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_28.gif","$%&#38;5555":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_29.gif","$%&#38;5783":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_30.gif","$%&#38;5912":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_31.gif","$%&#38;6173":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_32.gif","$%&#38;6262":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_33.gif","$%&#38;6398":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_34.gif","$%&#38;7834":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_35.gif","$%&#38;7867":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_36.gif","$%&#38;7912":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_37.gif","$%&#38;8121":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_38.gif","*Prost*":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=68701&kid=67863&ts=1301488298","*prost*":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=68701&kid=67863&ts=1301488298","$%&#38;11":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_11.gif","$%&#38;10":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_10.gif","$%&#38;1":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_1.gif","$%&#38;2":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_2.gif","$%&#38;3":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_3.gif","$%&#38;4":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_4.gif","$%&#38;5":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_5.gif","$%&#38;6":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_6.gif","$%&#38;7":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_7.gif","$%&#38;8":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_8.gif","$%&#38;9":"http:\/\/static.pe.meinvz.net\/20110328-0\/Img\/Smiley\/sVZ_Emoticon_9.gif"}"/>
<input type="hidden" id="MicroBlog-Emoticon-Links" value="{"*Prost*":"http:\/\/studivz.adfarm1.adition.com\/redi?sid=68701&kid=67863&ts=1301488298&clickurl=http:\/\/www.studivz.net\/l\/krombacher\/2","*prost*":"http:\/\/studivz.adfarm1.adition.com\/redi?sid=68701&kid=67863&ts=1301488298&clickurl=http:\/\/www.studivz.net\/l\/krombacher\/2"}"/>
</div>
<div class="obj-innerbox">
<h2>Gemeinsame Freunde</h2>
<div class="obj-subbar">
Du hast <a href="/Friends/Common/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs">52 gemeinsame Freunde</a> mit Patricia. </div>
<ul class="obj-thumbnaillist">
<li>
<div class="imageContainer"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsaLH2VjNPN1EFDNgU1Z-hrk"><img src="http://img-p2.pe.imagevz.net/profile1/04/0b/71c16d6ed519ea2be8cb7378867c/1-8a2c92ddcd73104b-s.jpg" alt="Tobi Wan Kenobi"/></a></div>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsaLH2VjNPN1EFDNgU1Z-hrk">Tobi Wan Kenobi</a></div>
</li>
<li>
<div class="imageContainer"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsXHF9X1Ci41mbDCjBjO78x4"><img src="http://img-p2.pe.imagevz.net/profile1/78/48/82bfba8ffbe4abfd8ac7c6771ca9/1-7e7067dc0215c7eb-s.jpg" alt="David Eckler"/></a></div>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsXHF9X1Ci41mbDCjBjO78x4">David Eckler</a></div>
</li>
<li>
<div class="imageContainer"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsY5evW-9FWNNA281TgoyrdE"><img src="http://img-p2.pe.imagevz.net/profile1/21/86/0f3dbdd69a40fdf19a47d56d41e1/1-63604fe3a8f9377b-s.jpg" alt="Anja Lieder"/></a></div>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsY5evW-9FWNNA281TgoyrdE">Anja Lieder</a></div>
</li>
</ul>
</div><div class="obj-innerbox">
<h2>Freunde (gleiche Region)</h2>
<div class="obj-subbar">
Patricia hat <a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/48884">40 Freunde</a> in der Region Eilenburg. </div>
<ul class="obj-thumbnaillist">
<li>
<a href="/Profile/8tdVJyeco54Sp6cuBo1qsdtYvULBLGCcrCaKKJzmZoc"><img src="http://img-p5.pe.imagevz.net/profile2/76/97/7241c0a40ea47c89495a9053315d/1-7d7112a81068f8e4-s.jpg" alt="Manuela Haberkorn"/></a>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsdtYvULBLGCcrCaKKJzmZoc">Manuela Haberkorn</a></div>
</li>
<li>
<a href="/Profile/8tdVJyeco54Sp6cuBo1qsTDdDixKtoglOsq-bOMiVAU"><img src="http://img-p3.pe.imagevz.net/profile1/69/51/326f2ecb7d60ac41f502bbae3bdb/1-3d0dde540296bf8a-s.jpg" alt="Daniel Schäfer"/></a>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsTDdDixKtoglOsq-bOMiVAU">Daniel Schäfer</a></div>
</li>
<li>
<a href="/Profile/8tdVJyeco54Sp6cuBo1qsThl4Es_Mtvfatp7TL47UDA"><img src="http://img-p2.pe.imagevz.net/profile1/48/27/0fdf70ea63f0048148658c92cdfe/1-f76ecf4d974167ff-s.jpg" alt="â¥Ú¿Ú°Û£Â«à² nIcOlE aKa De StRuPpI â¥Ú¿Ú°Û£Â«à²"/></a>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsThl4Es_Mtvfatp7TL47UDA">â¥Ú¿Ú°Û£Â«à² nIcOlE aKa De StRuPpI â¥Ú¿Ú°Û£Â«à²</a></div>
</li>
<li>
<a href="/Profile/8tdVJyeco54Sp6cuBo1qscEEPpIqiZqnVRVg34f3xs0"><img src="http://img-p1.pe.imagevz.net/profile1/b8/02/486605428e578b22b77369ed56bb/1-0a8d236ab8ed219f-s.jpg" alt="Stefanie Heinke"/></a>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qscEEPpIqiZqnVRVg34f3xs0">Stefanie Heinke</a></div>
</li>
<li>
<a href="/Profile/8tdVJyeco54Sp6cuBo1qsa_GIQQMhnGNar6czlDl6WA"><img src="http://img-p4.pe.imagevz.net/profile1/92/16/3410c2c3d51e1a692515507efd43/1-248add2b3c407097-s.jpg" alt="Katrin Lenz"/></a>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsa_GIQQMhnGNar6czlDl6WA">Katrin Lenz</a></div>
</li>
<li>
<a href="/Profile/8tdVJyeco54Sp6cuBo1qsf2x5UBL1y2zXeLdhR8tymY"><img src="http://img-p1.pe.imagevz.net/profile2/18/92/3a4c44d4d5d94618547eda4bfc00/1-a61db3942e104dcf-s.jpg" alt="Antje Sander"/></a>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsf2x5UBL1y2zXeLdhR8tymY">Antje Sander</a></div>
</li>
</ul>
</div><div class="obj-innerbox">
<h2>Freunde (andere Region)</h2>
<div class="obj-subbar">
Patricia hat <a href="/Friends/Other/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs">38 Freunde</a> in ... </div>
<ul class="uniList float-left">
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/3716">GroÃ-Gerau</a> (1)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/3771">Esslingen</a> (3)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/3825">Miesbach</a> (1)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/3959">Leipzig</a> (12)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/3960">Delitzsch</a> (12)
</li>
</ul>
<ul class="uniList float-left">
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/3962">Leipziger Land</a> (5)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/3964">Torgau-Oschatz</a> (2)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/4018">Basel-Landschaft</a> (1)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/48985">Torgau</a> (1)
</li>
</ul>
</div><div class="obj-innerbox">
<h2>Freunde auf studiVZ</h2>
<div class="obj-subbar">
Patricia hat <a href="/Friends/Platform/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/1">23 Freunde</a> an ... </div>
<ul class="uniList floatL">
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/159/1">Uni Leipzig</a> (10)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/160/1">HTWK Leipzig</a> (6)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/295/1">HHL Leipzig</a> (1)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/368/1">Universität Zürich</a> (1)
</li>
</ul>
<ul class="uniList floatL">
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/627/1">BA Leipzig</a> (2)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/1606/1">DHfPG Leipzig</a> (2)
</li>
<li>
<a href="/Friends/Network/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/2642/1">Diploma Leipzig</a> (1)
</li>
</ul>
</div>
</div>
<div id="profileRight" class="obj-box twothird">
<div id="Friends-Connection" class="obj-innerbox friendsColumn">
<h2>Verbindung</h2>
<ul class="obj-thumbnaillist">
<li>
<a href="/Profile/8tdVJyeco54Sp6cuBo1qsajYPqMm4gHSnUJiB7MaBIo"><img src="http://img-p2.pe.imagevz.net/profile1/91/2a/3a39897272b3606c147ebc52df09/1-38f1d96d822ff36b-s.jpg" alt="Schramme .."/></a>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsajYPqMm4gHSnUJiB7MaBIo">Schramme ..</a></div>
</li>
<li class="last">
<a href="/Profile/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs"><img src="http://img-p3.pe.imagevz.net/profile2/21/67/b2ac7a2b9c2fbb10ddb81d46c694/1-1c6178cadc937622-s.jpg" alt="Patricia Müller"/></a>
<div class="caption"><a href="/Profile/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs">Patricia Müller</a></div>
</li>
</ul>
</div>
<div id="Profile_InformationSnipplet" class="obj-innerbox">
<h2>Information</h2>
<div id="P" class="accountStatusOnline clearFix hidden">
<br /><span id="status_8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs" class="mobilestatus">Plauderkasten ist an.</span>
</div>
<h3>Account</h3>
<dl id="Mod-Profile-Information-Account" class="obj-keyValueList" >
<dt>Name:</dt>
<dd>
Patricia Müller
</dd>
<dt>Verzeichnis:</dt>
<dd>
<img src="http://static.pe.meinvz.net/20110328-0/Img/Logos/mvzLogo15px.gif" alt="meinVZ"/>
</dd>
<dt>Mitglied seit:</dt>
<dd>25.01.2011</dd>
<dt>Letztes Update:</dt>
<dd>31.01.2011</dd>
</dl><h3>Allgemeines</h3>
<dl id="Mod-Profile-Information-General" class="obj-keyValueList">
<dt>Region:</dt>
<dd>
<a href="/Search/SearchSuper/platform/3/uni/48884/doSearch/1/rmC/1">Eilenburg</a> </dd>
<dt>Status:</dt>
<dd>im Berufsleben</dd>
<dt>Geschlecht:</dt>
<dd><a href="/Search/SearchSuper/gender/1/platform/3/doSearch/1/rmC/1">weiblich</a></dd>
<dt>Geburtstag:</dt>
<dd>
27.07. <a href="/Birthday" class="icon icon-calendar">Zum Kalender</a>
</dd>
</dl>
<h3>Persönliches</h3>
</div><div id="gadgets-list">
</div>
<div id="Mod-Groups-Snipplet" class="obj-innerbox">
<h2>Gruppen </h2>
<ul>
<li>
<a href="/Groups/Overview/104946e7f0460efd">ERZ10 Rote Jahne</a>
</li>
<li>
<a href="/Groups/Overview/85d1878aa2fcd4ec">ex-schiller-schule-schüler-eilenburg</a>
</li>
<li>
<a href="/Groups/Overview/a99fee2ca081b68e">Neulinge im VZ</a>
</li>
</ul>
</div><div id="Mod-Pinboard-Snipplet" class="obj-innerbox">
<h2>Pinnwand</h2>
<div class="obj-subbar">
<div class="obj-subbar-info">
Zeige 9 von <a href="/Pinboard/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/p/1">
9 Einträgen </a>
</div>
<div class="obj-subbar-actions">
<a href="javascript:;" name="showForm" class="showForm" >Etwas schreiben</a>
| <a href="/Pinboard/8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs/p/1">
Alle ansehen </a>
</div>
</div>
<div class="write-panel pinboard-write" style="display:none;">
<form action="" method="post">
<script type="text/javascript">
embedHidden = function() { return false;};
</script> <fieldset>
<div class="form-row">
<div class="hint hidden">Bitte schreib etwas.</div><label for="Pinboard_entry" class="floatL">Eintrag: </label><textarea id="Pinboard_entry" rows="6" cols="45" title="Bitte schreib etwas." name="entry"></textarea> </div>
<div id="Pinboard-Embed-Container" class="hint form-row"></div>
<div class="hint">
noch <span id="pinboardCharsCount"></span> Zeichen </div>
<input type="hidden" name="referrer" value="overview" />
<input type="hidden" name="userId" value="8tdVJyeco54Sp6cuBo1qsV93wfdYlNGYMJmg8-9Dyjs" />
<div class="form-buttons">
<input class="button" type="submit" value="Abschicken" />
<input class="button" type="reset" value="Doch nicht" />
</div>
<input type="hidden" name="formkey" value="8bafddf482eedc492d479929c197f75234a3117d034b9ec2609b25a30208f616ea9e79ea94e46d52be0e91e405a097fe00e0ff2fb6fe220006ae151e00f7289d26946ac1262b5dab7d97825f45448b595c20f01501cd7fc82a89be5c1aaafd3d3548ec0ad49d8997a865ceee8a57b7de" />
<input type="hidden" name="iv" value="fdd1bc749d8638d8dca4a6cb7c614974" />
</fieldset>
<input type="hidden" id="emoticonArray" value="{"#alles-gute1#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100125_Pinnwandvisual_AllesGute.jpg","#danke1#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100123_Pinnwandvisual_Danke.jpg","#du-ich#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/visual-du-ich_2009.gif","#fit-wie-ein-turnschuh#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100208_Pinnwandvisual_GuteBesserung_2010_3_3.gif","#gib-mir-5#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100125_Pinnwandvisual_GibMir5.jpg","#glueckwunsch1#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100125_Pinnwandvisual_Glueckwunsch.jpg","#gruesse#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/allgemein\/101105_Single_Pinnwandvisual05.jpg","#gute-besserung1#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100208_Pinnwandvisual_GuteBesserung_2010_2_2.jpg","#hallo1#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/allgemein\/101105_Single_Pinnwandvisual04aVZsVZ.jpg","#herz1#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/herz.png","#heute-abend#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/allgemein\/101105_Single_Pinnwandvisuals10.png","#hut-ab1#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100125_Pinnwandvisual_HutAb.jpg","#ich-liebe-dich#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/liebe.gif","#knutscha#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/knutscha.gif","#liebe-regnen#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/regnen.png","#liebe-regnen1#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/regnen.png","#mag-dich1#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/allgemein\/101108_PV_Single08.png","#nie-wieder#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100208_Pinnwandvisual_NieWieder.jpg","#party#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/allgemein\/101108_PV_Single07.jpg","#schnell-auf-die-beine#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100208_Pinnwandvisual_GuteBesserung_2010_4.gif","#sei-nicht-boese#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100208_Pinnwandvisual_SeiNichtBoese.jpg","#sei-stolz#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100125_Pinnwandvisual_SeiStolz.jpg","#traum#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/allgemein\/101108_PV_Single02_2.png","#verzeihst-du-mir#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100123_Pinnwandvisual_Verzeihen.jpg","#viel-glueck1#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100125_Pinnwandvisual_VielGlueck.jpg","#wirklich-krank#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/100208_Pinnwandvisual_GuteBesserung_2010_1_2.jpg","#wochenende#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/allgemein\/101008_PV_Single04.jpg","#aktiv#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64545&kid=112203&bid=324348&ts=1301517583","#aok-aktiv-strand#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64545&kid=112203&bid=324348&ts=1301517583","#aok-beauty-vote#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64545&kid=112252&bid=324725&ts=1301517583","#aok-chillout-strand#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64545&kid=112217&bid=324445&ts=1301517583","#aok-fun-strand#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64545&kid=112218&bid=324448&ts=1301517583","#aok-wellness-strand#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64545&kid=112240&bid=324699&ts=1301517583","#chillout#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64545&kid=112217&bid=324445&ts=1301517583","#woisttil#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=68340&kid=118669&bid=349721&ts=[timestamp]&ts=1301517583","#collbleiben#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64544&kid=89541&ts=1301517583","#colldrauf#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64544&kid=89553&ts=1301517583","#coolbleiben#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64544&kid=89541&ts=1301517583","#coolblieben#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64544&kid=89541&ts=1301517583","#cooldaruf#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64544&kid=89553&ts=1301517583","#cooldrauf#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=64544&kid=89553&ts=1301517583","#herz-tanzt#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/flirten\/101105_Single_Pinnwandvisual03.jpg","#herzen#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/flirten\/101105_Single_Pinnwandvisual02.jpg","#kaffee#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/flirten\/101105_Single_Pinnwandvisual01.jpg","#mein-typ#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/flirten\/101105_Single_Pinnwandvisual7.jpg","#fruehlingsgruesse#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/100317_Pinnwandvisual_Herzblume.gif","#hurra#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/100317_Pinnwandvisual_Schmetterlinge.gif","#pusteblume#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/100317_Pinnwandvisual_Herzwolke.gif","#pusteblume1#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/100317_Pinnwandvisual_Pusteblume.gif","#sonne#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/100317_Pinnwandvisual_Herzwolke.gif","#zauberhaft#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/100317_Pinnwandvisual_Vogel.gif","#baby1#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/geburt\/100611_Geburt_Pinnwandvisuals01.jpg","#baby2#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/geburt\/100611_Geburt_Pinnwandvisuals03.jpg","#fratz#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/geburt\/100611_Geburt_Pinnwandvisuals05.jpg","#lieferzeit#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/geburt\/100611_Geburt_Pinnwandvisuals02.jpg","#sonnenschein#":"http:\/\/static.pe.studivz.net\/media\/de\/pinnwand\/geburt\/100611_Geburt_Pinnwandvisuals04.jpg","#geb-dick#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/visual-geburtstag_2009_6.gif","#geb-geschenke#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/visual-geburtstag_2009_10.jpg","#geb-hase#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/visual-geburtstag_2009_3.gif","#geb-hund#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/visual-geburtstag_2009_2.jpg","#geb-kuchen#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/visual-geburtstag_2009_13.jpg","#geb-lumpi#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/visual-geburtstag_2009_5_neu.jpg","#geb-party#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/visual-geburtstag_2009_9.jpg","#geb-rente#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/visual-geburtstag_2009_4.gif","#geb-torte#":"http:\/\/static.pe.meinvz.net\/media\/de\/pinnwand\/visual-geburtstag_2009_11.jpg","#got2b#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=68701&kid=67874&ts=1301517583","#got2b-vote#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=68701&kid=70714&ts=1301517583","#got2be#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=68701&kid=67874&ts=1301517583","#got2be-vote#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=68701&kid=70714&ts=1301517583","#got2bevote#":"http:\/\/studivz.adfarm1.adition.com\/banner?sid=68701&kid=70714&ts=1301517583",
Untitled JavaScript (30-Mar @ 22:29)
Syntax Highlighted Code
- 0KcrZFfAjzRGJU_mI7L6gQv4Nq1mFTszl5cdNT339xI
Plain Code
0KcrZFfAjzRGJU_mI7L6gQv4Nq1mFTszl5cdNT339xI
Untitled JavaScript (22-Mar @ 17:16)
Syntax Highlighted Code
- print("Hello world!");
Plain Code
print("Hello world!");
Untitled JavaScript (22-Mar @ 17:15)
Syntax Highlighted Code
- function truc() {
- return "blah";
- }
- [1 more lines...]
Plain Code
function truc() {
return "blah";
}
echo(truc());
Untitled JavaScript (23-Feb @ 06:20)
Syntax Highlighted Code
- // shim layer with setTimeout fallback
- window.requestAnimFrame = (function(){
- return window.requestAnimationFrame ||
- [17 more lines...]
Plain Code
// shim layer with setTimeout fallback
window.requestAnimFrame = (function(){
return window.requestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.oRequestAnimationFrame ||
window.msRequestAnimationFrame ||
function(/* function */ callback, /* DOMElement */ element){
window.setTimeout(callback, 1000 / 60);
};
})();
// usage:
// instead of setInterval(render, 16) ....
(function animloop(){
render();
requestAnimFrame(animloop, element);
})();
Untitled JavaScript (15-Feb @ 20:15)
Syntax Highlighted Code
- var tratarEnquadramentos = function(obj) {
- if (!obj.value.length) {
- return false;
- }
- [231 more lines...]
Plain Code
var tratarEnquadramentos = function(obj) {
if (!obj.value.length) {
return false;
}
if (obj.value.substr(0, 3) == '811') {
window.alert('Em breve os Enquadramentos de Drawback estarão disponÃveis no Simulador.');
obj.value = '';
return false;
}
var disabledData = disabledPercent = disabledRc = disabledRv = disabledDi = disabledRe = disabledMt = true;
/*
var enquadramentos = jQuery('.enquadramento').values();
if (enquadramentos.length) {
disabledMt = false;
}
*/
jQuery('.enquadramento').each(function(){
if (this.value.length) {
disabledData = disabledData ? !(jQuery.inArray(this.value, ['80102', '80104', '90003', '90013']) !== -1) : false;
disabledPercent = disabledPercent ? !(this.value == '80104') : false;
disabledRv = disabledRv ? !(this.value == '81301') : false;
disabledRc = disabledRc ? !(jQuery.inArray(this.value, ['81501', '81502', '81503']) !== -1) : false;
disabledDi = disabledDi ? !(jQuery.inArray(this.value, ['99123', '99108']) == -1) : false;
disabledRe = disabledRe ? !(this.value == '99106') : false;
disabledMt = false;
}
});
// Desabilita campos
jQuery('#RegistroExportacaoDataLimite').attr('readonly', disabledData);
jQuery('#RegistroExportacaoPercentualMargemNaoSacada').attr('readonly', disabledPercent);
jQuery('#RegistroExportacaoRcVinculado').attr('readonly', disabledRc);
jQuery('#RegistroExportacaoRvVinculado').attr('readonly', disabledRv);
jQuery('#RegistroExportacaoReVinculado').attr('readonly', disabledRe);
jQuery('#RegistroExportacaoDiVinculado').attr('readonly', disabledDi);
jQuery('#vincular_informacoes').attr('disabled', disabledRc && disabledRv && disabledDi && disabledRe);
jQuery('#RegistroExportacaoModalidadeTransacao').attr('readonly', disabledMt);
};
var tabelaList = function(model, codigo, descricao) {
Popups.open('novoex/pages/tabelaList/' + model + '/' + codigo + '/' + descricao, {
width: 400,
height: 450
});
return false;
};
var tabelaInstrumentoNegociacao = function(codigoPais, codigo, descricao) {
if (!jQuery('#' + codigoPais).val().length) {
window.alert('Informe o Pais Destino para obter seus Instrumentos de Negociação.');
return false;
}
Popups.open('novoex/pages/tabelaInstrumentoNegociacao/' + jQuery('#' + codigoPais).val() + '/' + codigo + '/' + descricao, {
width: 780,
height: 450
});
return false;
};
var tabelaNcm = function(codigo, descricao) {
Popups.open('novoex/pages/tabelaNcm/' + codigo + '/' + descricao, {
width: 780,
height: 450
});
return false;
};
var clone = function(obj) {
var obj = obj || this;
return jQuery(obj).after(jQuery(obj).clone());
};
function inserirCCPTC(obj) {
var codigo = jQuery('#RegistroExportacaoCodigoCcptc');
var ncm = jQuery('#RegistroExportacaoNcm');
var unidade_medida = jQuery('#RegistroExportacaoUnidadeMedida');
var quantidade = jQuery('#RegistroExportacaoQtdeMedidaEstatistica');
if (codigo.val() != '' && ncm.val() != '' && unidade_medida.val() != '' && quantidade.val() != '') {
var clone = this.clone(obj); // Chama a function clone
clone.children('#ccptc_td0').html('<input type="checkbox" class="inputCCPTC" value="'+jQuery('#RegistroExportacaoCcptcQtde').val()+'" id="inputCCPTC" name="inputCCPTC['+jQuery('#RegistroExportacaoCcptcQtde').val()+']" />'+'<input value="'+codigo.val()+'" type="hidden" name="data[Ccptc][certificado][]" />'+'<input value="'+ncm.val()+'" type="hidden" name="data[Ccptc][ncm][]" />'+'<input value="'+unidade_medida.val()+'" type="hidden" name="data[Ccptc][unidade_medida][]" />'+'<input value="'+quantidade.val()+'" type="hidden" name="data[Ccptc][qtd_estatistica][]" />');
clone.children('#ccptc_td1').html(codigo.val());
clone.children('#ccptc_td2').html(ncm.val());
clone.children('#ccptc_td3').html(unidade_medida.val());
clone.children('#ccptc_td4').html(quantidade.val());
clone.children('#ccptc_td5').html('<a href="#" onclick="alterarCCPTC(this);">Editar<img src="../img/icons/edit.gif" /></a>');
jQuery('#RegistroExportacaoCcptcQtde').val(parseFloat(parseFloat(jQuery('#RegistroExportacaoCcptcQtde').val()) + parseFloat(1)));
clone.show();
} else {
alert('Favor preencher todos os campos.');
}
}
function alterarCCPTC(obj) {
var codigo = jQuery('#RegistroExportacaoCodigoCcptc');
var ncm = jQuery('#RegistroExportacaoNcm');
var unidade_medida = jQuery('#RegistroExportacaoUnidadeMedida');
var quantidade = jQuery('#RegistroExportacaoQtdeMedidaEstatistica');
var obj = jQuery(obj);
codigo.val(obj.parent().parent().children('#ccptc_td1').html());
ncm.val(obj.parent().parent().children('#ccptc_td2').html());
unidade_medida.val(obj.parent().parent().children('#ccptc_td3').html());
quantidade.val(obj.parent().parent().children('#ccptc_td4').html());
jQuery('#ccptc_botao_incluir').attr('disabled', true);
jQuery('#ccptc_botao_atualizar').attr('disabled', false);
jQuery('#ccptc_botao_excluir').attr('disabled', true);
jQuery('#RegistroExportacaoCcptcTdEdit').val(obj.parent().parent().children('#ccptc_td0').children('#inputCCPTC').val());
}
function atualizarCCPTC() {
var codigo = jQuery('#RegistroExportacaoCodigoCcptc');
var ncm = jQuery('#RegistroExportacaoNcm');
var unidade_medida = jQuery('#RegistroExportacaoUnidadeMedida');
var quantidade = jQuery('#RegistroExportacaoQtdeMedidaEstatistica');
var edt = jQuery('input[name="inputCCPTC['+jQuery('#RegistroExportacaoCcptcTdEdit').val()+']"]');
edt.parent().parent().children('#ccptc_td1').html(codigo.val());
edt.parent().parent().children('#ccptc_td2').html(ncm.val());
edt.parent().parent().children('#ccptc_td3').html(unidade_medida.val());
edt.parent().parent().children('#ccptc_td4').html(quantidade.val());
jQuery('#ccptc_botao_incluir').attr('disabled', false);
jQuery('#ccptc_botao_atualizar').attr('disabled', true);
jQuery('#ccptc_botao_excluir').attr('disabled', false);
codigo.val('');
ncm.val('');
unidade_medida.val('');
quantidade.val('');
}
function excluirCCPTC() {
jQuery(".inputCCPTC:checked").each(function(i, el) {
jQuery(el).parent().parent().remove();
});
}
function inserirFabricante(obj) {
var cpf_cnpj = jQuery('#RegistroExportacaoFabricanteCpfCnpj');
var uf = jQuery('#RegistroExportacaoFabricanteUf');
var quantidade = jQuery('#RegistroExportacaoFabricanteQuantidadeEstatistica');
var peso = jQuery('#RegistroExportacaoFabricantePesoLiquido');
var valor = jQuery('#RegistroExportacaoFabricanteValorEmbarque');
if (cpf_cnpj.val() != '' && uf.val() != '' && quantidade.val() != '' && peso.val() != '' && valor.val() != '' ) {
var clone = this.clone(obj); // Chama a function clone
clone.children('#fabricante_td0').html('<input type="checkbox" class="inputFabricante" value="'+jQuery('#RegistroExportacaoFabricanteQtde').val()+'" id="inputFabricante" name="inputFabricante['+jQuery('#RegistroExportacaoFabricanteQtde').val()+']" />'+'<input value="'+cpf_cnpj.val()+'" type="hidden" name="data[Fabricante][cpf_cnpj][]" />'+'<input value="'+uf.val()+'" type="hidden" name="data[Fabricante][sigla_uf_fabric][]" />'+'<input value="'+quantidade.val()+'" type="hidden" name="data[Fabricante][qtd_estatistica_fabric][]" />'+'<input value="'+peso.val()+'" type="hidden" name="data[Fabricante][peso_liquido_fabric][]" />'+'<input value="'+valor.val()+'" type="hidden" name="data[Fabricante][valor_moeda_local_embarque][]" />'+'<input value="'+jQuery('#RegistroExportacaoFabricanteObservacao').val()+'" type="hidden" name="data[Fabricante][obs_fabric][]" />');
clone.children('#fabricante_td1').html(cpf_cnpj.val());
clone.children('#fabricante_td2').html(uf.val());
clone.children('#fabricante_td3').html(quantidade.val());
clone.children('#fabricante_td4').html(peso.val());
clone.children('#fabricante_td5').html(valor.val());
clone.children('#fabricante_td6').html('<a href="#" onclick="alterarFabricante(this);">Editar<img src="../img/icons/edit.gif" /></a>');
jQuery('#RegistroExportacaoFabricanteQtde').val(parseFloat(parseFloat(jQuery('#RegistroExportacaoFabricanteQtde').val()) + parseFloat(1)));
clone.show();
} else {
alert('Favor preencher todos os campos.');
}
}
function alterarFabricante(obj) {
var cpf_cnpj = jQuery('#RegistroExportacaoFabricanteCpfCnpj');
var uf = jQuery('#RegistroExportacaoFabricanteUf');
var quantidade = jQuery('#RegistroExportacaoFabricanteQuantidadeEstatistica');
var peso = jQuery('#RegistroExportacaoFabricantePesoLiquido');
var valor = jQuery('#RegistroExportacaoFabricanteValorEmbarque');
var obj = jQuery(obj);
cpf_cnpj.val(obj.parent().parent().children('#fabricante_td1').html());
uf.val(obj.parent().parent().children('#fabricante_td2').html());
quantidade.val(obj.parent().parent().children('#fabricante_td3').html());
peso.val(obj.parent().parent().children('#fabricante_td4').html());
valor.val(obj.parent().parent().children('#fabricante_td5').html());
jQuery('#fabricante_botao_incluir').attr('disabled', true);
jQuery('#fabricante_botao_atualizar').attr('disabled', false);
jQuery('#fabricante_botao_excluir').attr('disabled', true);
jQuery('#RegistroExportacaoFabricanteTdEdit').val(obj.parent().parent().children('#fabricante_td0').children('#inputFabricante').val());
}
function atualizarFabricante() {
var cpf_cnpj = jQuery('#RegistroExportacaoFabricanteCpfCnpj');
var uf = jQuery('#RegistroExportacaoFabricanteUf');
var quantidade = jQuery('#RegistroExportacaoFabricanteQuantidadeEstatistica');
var peso = jQuery('#RegistroExportacaoFabricantePesoLiquido');
var valor = jQuery('#RegistroExportacaoFabricanteValorEmbarque');
var edt = jQuery('input[name="inputFabricante['+jQuery('#RegistroExportacaoFabricanteTdEdit').val()+']"]');
edt.parent().parent().children('#fabricante_td1').html(cpf_cnpj.val());
edt.parent().parent().children('#fabricante_td2').html(uf.val());
edt.parent().parent().children('#fabricante_td3').html(quantidade.val());
edt.parent().parent().children('#fabricante_td4').html(peso.val());
edt.parent().parent().children('#fabricante_td5').html(valor.val());
jQuery('#fabricante_botao_incluir').attr('disabled', false);
jQuery('#fabricante_botao_atualizar').attr('disabled', true);
jQuery('#fabricante_botao_excluir').attr('disabled', false);
cpf_cnpj.val('');
uf.val('');
quantidade.val('');
peso.val('');
valor.val('');
jQuery('#RegistroExportacaoFabricanteObservacao').val('');
}
function excluirFabricante() {
jQuery(".inputFabricante:checked").each(function(i, el) {
jQuery(el).parent().parent().remove();
});
}
/* Funcoes do Governo */
var ultimaTeclaCaracterControle = false;
function FormataCNPJCPF(el) {vr = el.value;tam = vr.length;if (tam == 11) {if (vr.indexOf(".") == -1) {if (tam <= 2) {el.value = vr;}if (tam > 2 && tam <= 5) {el.value = vr.substr(0, tam - 2) + "-" + vr.substr(tam - 2, tam);}if (tam >= 6 && tam <= 8) {el.value = vr.substr(0, tam - 5) + "." + vr.substr(tam - 5, 3) + "-" + vr.substr(tam - 2, tam);}if (tam >= 9 && tam <= 11) {el.value = vr.substr(0, tam - 8) + "." + vr.substr(tam - 8, 3) + "." + vr.substr(tam - 5, 3) + "-" + vr.substr(tam - 2, tam);}if (tam >= 12 && tam <= 14) {el.value = vr.substr(0, tam - 11) + "." + vr.substr(tam - 11, 3) + "." + vr.substr(tam - 8, 3) + "." + vr.substr(tam - 5, 3) + "-" + vr.substr(tam - 2, tam);}if (tam >= 15 && tam <= 17) {el.value = vr.substr(0, tam - 14) + "." + vr.substr(tam - 14, 3) + "." + vr.substr(tam - 11, 3) + "." + vr.substr(tam - 8, 3) + "." + vr.substr(tam - 5, 3) + "-" + vr.substr(tam - 2, tam);}}}if (tam == 14) {if (vr.indexOf(".") == -1) {if (tam <= 2) {el.value = vr;}if (tam > 2 && tam <= 6) {el.value = vr.substr(0, 2) + "." + vr.substr(2, tam);}if (tam >= 7 && tam <= 10) {el.value = vr.substr(0, 2) + "." + vr.substr(2, 3) + "." + vr.substr(5, 3) + "/";}if (tam >= 11 && tam <= 18) {el.value = vr.substr(0, 2) + "." + vr.substr(2, 3) + "." + vr.substr(5, 3) + "/" + vr.substr(8, 4) + "-" + vr.substr(12, 2);}}}return true;}
function ValidaDigitacaoNumeros(evento, nomeCampo, tamMaximo, qtdDecimais) {var novoValor = "";var chValido = "";var temDecimal = false;var ehSeparador = false;var ehNumero = false;var ehCaracterControle = false;var sepPonto = 46;var sepVirgula = 44;var nPosDecimal = -1;var teclaDigitada = 0;var valorCampo = nomeCampo.value;if (window.event) {teclaDigitada = evento.keyCode;} else if (evento.which) {teclaDigitada = evento.which;}var posicaoCursor = getPosicaoCursor(nomeCampo);ehSeparador = teclaDigitada == sepVirgula || teclaDigitada == sepPonto;ehNumero = teclaDigitada > 47 && teclaDigitada < 58;ehCaracterControle = teclaDigitada <= 31 || teclaDigitada >= 127;nPosDecimal = valorCampo.indexOf(",");if (nPosDecimal == -1) {nPosDecimal = valorCampo.indexOf(".");}if (ehCaracterControle || ultimaTeclaCaracterControle) {valorCampo = EliminaTextoSelecionado(nomeCampo);return true;} else if (!(ehNumero || ehSeparador)) {return false;} else {valorCampo = EliminaTextoSelecionado(nomeCampo);if (ehSeparador) {if (qtdDecimais == 0 || nPosDecimal != -1 || valorCampo.length < 1) {return false;}} else if (qtdDecimais > 0 && !ehSeparador) {var nTamDecimal = valorCampo.length - (nPosDecimal + 1);if (nPosDecimal != -1 && posicaoCursor > nPosDecimal && nTamDecimal >= qtdDecimais) {return false;} else {var nMaxTamInteiro = tamMaximo - (qtdDecimais + 1);var nTamInteiro = valorCampo.length;if (nPosDecimal != -1) {nTamInteiro = nPosDecimal;}if (nTamInteiro >= nMaxTamInteiro && posicaoCursor <= nMaxTamInteiro) {return false;}}} else if (tamMaximo > 0 && valorCampo.length + 1 > tamMaximo) {return false;}}return true;}
function retiraFormatacao(valor) {var valorSemFormatacao = valor;while (valorSemFormatacao.indexOf(".") >= 0) {valorSemFormatacao = valorSemFormatacao.replace(".", "");}while (valorSemFormatacao.indexOf("-") >= 0) {valorSemFormatacao = valorSemFormatacao.replace("-", "");}while (valorSemFormatacao.indexOf("/") >= 0) {valorSemFormatacao = valorSemFormatacao.replace("/", "");}return valorSemFormatacao;}
function getPosicaoCursor(campo) {var valorCampo = "";var posicaoCursor = 0;if (BrowserDetect.browser != "MSIE" && BrowserDetect.browser != "Explorer") {posicaoCursor = campo.selectionStart;} else {posicaoCursor = Math.abs(document.selection.createRange().moveStart("character", -1000000));}return posicaoCursor;}
var BrowserDetect = ({init:(function () {this.browser = this.searchString(this.dataBrowser) || "An unknown browser";this.version = this.searchVersion(navigator.userAgent) || this.searchVersion(navigator.appVersion) || "an unknown version";this.OS = this.searchString(this.dataOS) || "an unknown OS";}), searchString:(function (data) {for (var i = 0; i < data.length; i++) {var dataString = data[i].string;var dataProp = data[i].prop;this.versionSearchString = data[i].versionSearch || data[i].identity;if (dataString) {if (dataString.indexOf(data[i].subString) != -1) {return data[i].identity;}} else if (dataProp) {return data[i].identity;}}}), searchVersion:(function (dataString) {var index = dataString.indexOf(this.versionSearchString);if (index == -1) {return;}return parseFloat(dataString.substring(index + this.versionSearchString.length + 1));}), dataBrowser:[{string:"Mozilla/5.0 (Windows; U; Windows NT 6.1; pt-BR; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5", subString:"OmniWeb", versionSearch:"OmniWeb/", identity:"OmniWeb"}, {string:"", subString:"Apple", identity:"Safari"}, {prop:(void 0), identity:"Opera"}, {string:"", subString:"iCab", identity:"iCab"}, {string:"", subString:"KDE", identity:"Konqueror"}, {string:"Mozilla/5.0 (Windows; U; Windows NT 6.1; pt-BR; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5", subString:"Firefox", identity:"Firefox"}, {string:"", subString:"Camino", identity:"Camino"}, {string:"Mozilla/5.0 (Windows; U; Windows NT 6.1; pt-BR; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5", subString:"Netscape", identity:"Netscape"}, {string:"Mozilla/5.0 (Windows; U; Windows NT 6.1; pt-BR; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5", subString:"MSIE", identity:"Explorer", versionSearch:"MSIE"}, {string:"Mozilla/5.0 (Windows; U; Windows NT 6.1; pt-BR; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5", subString:"Gecko", identity:"Mozilla", versionSearch:"rv"}, {string:"Mozilla/5.0 (Windows; U; Windows NT 6.1; pt-BR; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5", subString:"Mozilla", identity:"Netscape", versionSearch:"Mozilla"}], dataOS:[{string:"Win32", subString:"Win", identity:"Windows"}, {string:"Win32", subString:"Mac", identity:"Mac"}, {string:"Win32", subString:"Linux", identity:"Linux"}], versionSearchString:"Windows", browser:"Firefox", version:3.5, OS:"Windows"});
function EliminaTextoSelecionado(campo) {var valorCampo = "";var inicioSelecao = 0;var fimSelecao = 0;if (BrowserDetect.browser != "MSIE" && BrowserDetect.browser != "Explorer") {inicioSelecao = campo.selectionStart;fimSelecao = campo.selectionEnd;} else {inicioSelecao = Math.abs(document.selection.createRange().moveStart("character", -1000000));fimSelecao = Math.abs(document.selection.createRange().moveEnd("character", -1000000));}if (inicioSelecao != fimSelecao) {valorCampo = campo.value.substr(0, inicioSelecao) + campo.value.substr(fimSelecao);} else {valorCampo = campo.value;}return valorCampo;}
Untitled JavaScript (13-Feb @ 23:45)
Syntax Highlighted Code
- document.write("asdas");
Plain Code
document.write("asdas");
jquery.coda-slider-2.0.js (12-Feb @ 09:53)
Syntax Highlighted Code
- /*
- jQuery Coda-Slider v2.0 - http://www.ndoherty.biz/coda-slider
- Copyright (c) 2009 Niall Doherty
- This plugin available for use in all personal or commercial projects under both MIT and GPL licenses.
- [229 more lines...]
Plain Code
/*
jQuery Coda-Slider v2.0 - http://www.ndoherty.biz/coda-slider
Copyright (c) 2009 Niall Doherty
This plugin available for use in all personal or commercial projects under both MIT and GPL licenses.
*/
$(function(){
// Remove the coda-slider-no-js class from the body
$("body").removeClass("coda-slider-no-js");
// Preloader
$(".coda-slider").children('.panel').hide().end().prepend('<p class="loading">Loading...<br /><img src="images/ajax-loader.gif" alt="loading..." /></p>');
});
var sliderCount = 1;
$.fn.codaSlider = function(settings) {
settings = $.extend({
autoHeight: true,
autoHeightEaseDuration: 1000,
autoHeightEaseFunction: "easeInOutExpo",
autoSlide: false,
autoSlideInterval: 7000,
autoSlideStopWhenClicked: true,
crossLinking: true,
dynamicArrows: true,
dynamicArrowLeftText: "« left",
dynamicArrowRightText: "right »",
dynamicTabs: true,
dynamicTabsAlign: "center",
dynamicTabsPosition: "top",
externalTriggerSelector: "a.xtrig",
firstPanelToLoad: 1,
panelTitleSelector: "h2.title",
slideEaseDuration: 1000,
slideEaseFunction: "easeInOutExpo"
}, settings);
return this.each(function(){
// Uncomment the line below to test your preloader
// alert("Testing preloader");
var slider = $(this);
// If we need arrows
if (settings.dynamicArrows) {
slider.parent().addClass("arrows");
slider.before('<div class="coda-nav-left" id="coda-nav-left-' + sliderCount + '"><a href="#">' + settings.dynamicArrowLeftText + '</a></div>');
slider.after('<div class="coda-nav-right" id="coda-nav-right-' + sliderCount + '"><a href="#">' + settings.dynamicArrowRightText + '</a></div>');
};
var panelWidth = slider.find(".panel").width();
var panelCount = slider.find(".panel").size();
var panelContainerWidth = panelWidth*panelCount;
var navClicks = 0; // Used if autoSlideStopWhenClicked = true
// Surround the collection of panel divs with a container div (wide enough for all panels to be lined up end-to-end)
$('.panel', slider).wrapAll('<div class="panel-container"></div>');
// Specify the width of the container div (wide enough for all panels to be lined up end-to-end)
$(".panel-container", slider).css({ width: panelContainerWidth });
// Specify the current panel.
// If the loaded URL has a hash (cross-linking), we're going to use that hash to give the slider a specific starting position...
if (settings.crossLinking && location.hash && parseInt(location.hash.slice(1)) <= panelCount) {
var currentPanel = parseInt(location.hash.slice(1));
var offset = - (panelWidth*(currentPanel - 1));
$('.panel-container', slider).css({ marginLeft: offset });
// If that's not the case, check to see if we're supposed to load a panel other than Panel 1 initially...
} else if (settings.firstPanelToLoad != 1 && settings.firstPanelToLoad <= panelCount) {
var currentPanel = settings.firstPanelToLoad;
var offset = - (panelWidth*(currentPanel - 1));
$('.panel-container', slider).css({ marginLeft: offset });
// Otherwise, we'll just set the current panel to 1...
} else {
var currentPanel = 1;
};
// Left arrow click
$("#coda-nav-left-" + sliderCount + " a").click(function(){
navClicks++;
if (currentPanel == 1) {
offset = - (panelWidth*(panelCount - 1));
alterPanelHeight(panelCount - 1);
currentPanel = panelCount;
slider.siblings('.coda-nav').find('a.current').removeClass('current').parents('ul').find('li:last a').addClass('current');
} else {
currentPanel -= 1;
alterPanelHeight(currentPanel - 1);
offset = - (panelWidth*(currentPanel - 1));
slider.siblings('.coda-nav').find('a.current').removeClass('current').parent().prev().find('a').addClass('current');
};
$('.panel-container', slider).animate({ marginLeft: offset }, settings.slideEaseDuration, settings.slideEaseFunction);
if (settings.crossLinking) { location.hash = currentPanel }; // Change the URL hash (cross-linking)
return false;
});
// Right arrow click
$('#coda-nav-right-' + sliderCount + ' a').click(function(){
navClicks++;
if (currentPanel == panelCount) {
offset = 0;
currentPanel = 1;
alterPanelHeight(0);
slider.siblings('.coda-nav').find('a.current').removeClass('current').parents('ul').find('a:eq(0)').addClass('current');
} else {
offset = - (panelWidth*currentPanel);
alterPanelHeight(currentPanel);
currentPanel += 1;
slider.siblings('.coda-nav').find('a.current').removeClass('current').parent().next().find('a').addClass('current');
};
$('.panel-container', slider).animate({ marginLeft: offset }, settings.slideEaseDuration, settings.slideEaseFunction);
if (settings.crossLinking) { location.hash = currentPanel }; // Change the URL hash (cross-linking)
return false;
});
// If we need a dynamic menu
if (settings.dynamicTabs) {
var dynamicTabs = '<div class="coda-nav" id="coda-nav-' + sliderCount + '"><ul></ul></div>';
switch (settings.dynamicTabsPosition) {
case "bottom":
slider.parent().append(dynamicTabs);
break;
default:
slider.parent().prepend(dynamicTabs);
break;
};
ul = $('#coda-nav-' + sliderCount + ' ul');
// Create the nav items
$('.panel', slider).each(function(n) {
ul.append('<li class="tab' + (n+1) + '"><a href="#' + (n+1) + '">' + $(this).find(settings.panelTitleSelector).text() + '</a></li>');
});
navContainerWidth = slider.width() + slider.siblings('.coda-nav-left').width() + slider.siblings('.coda-nav-right').width();
ul.parent().css({ width: navContainerWidth });
switch (settings.dynamicTabsAlign) {
case "center":
ul.css({ width: ($("li", ul).width() + 2) * panelCount });
break;
case "right":
ul.css({ float: 'right' });
break;
};
};
// If we need a tabbed nav
$('#coda-nav-' + sliderCount + ' a').each(function(z) {
// What happens when a nav link is clicked
$(this).bind("click", function() {
navClicks++;
$(this).addClass('current').parents('ul').find('a').not($(this)).removeClass('current');
offset = - (panelWidth*z);
alterPanelHeight(z);
currentPanel = z + 1;
$('.panel-container', slider).animate({ marginLeft: offset }, settings.slideEaseDuration, settings.slideEaseFunction);
if (!settings.crossLinking) { return false }; // Don't change the URL hash unless cross-linking is specified
});
});
// External triggers (anywhere on the page)
$(settings.externalTriggerSelector).each(function() {
// Make sure this only affects the targeted slider
if (sliderCount == parseInt($(this).attr("rel").slice(12))) {
$(this).bind("click", function() {
navClicks++;
targetPanel = parseInt($(this).attr("href").slice(1));
offset = - (panelWidth*(targetPanel - 1));
alterPanelHeight(targetPanel - 1);
currentPanel = targetPanel;
// Switch the current tab:
slider.siblings('.coda-nav').find('a').removeClass('current').parents('ul').find('li:eq(' + (targetPanel - 1) + ') a').addClass('current');
// Slide
$('.panel-container', slider).animate({ marginLeft: offset }, settings.slideEaseDuration, settings.slideEaseFunction);
if (!settings.crossLinking) { return false }; // Don't change the URL hash unless cross-linking is specified
});
};
});
// Specify which tab is initially set to "current". Depends on if the loaded URL had a hash or not (cross-linking).
if (settings.crossLinking && location.hash && parseInt(location.hash.slice(1)) <= panelCount) {
$("#coda-nav-" + sliderCount + " a:eq(" + (location.hash.slice(1) - 1) + ")").addClass("current");
// If there's no cross-linking, check to see if we're supposed to load a panel other than Panel 1 initially...
} else if (settings.firstPanelToLoad != 1 && settings.firstPanelToLoad <= panelCount) {
$("#coda-nav-" + sliderCount + " a:eq(" + (settings.firstPanelToLoad - 1) + ")").addClass("current");
// Otherwise we must be loading Panel 1, so make the first tab the current one.
} else {
$("#coda-nav-" + sliderCount + " a:eq(0)").addClass("current");
};
// Set the height of the first panel
if (settings.autoHeight) {
panelHeight = $('.panel:eq(' + (currentPanel - 1) + ')', slider).height();
slider.css({ height: panelHeight });
};
// Trigger autoSlide
if (settings.autoSlide) {
slider.ready(function() {
setTimeout(autoSlide,settings.autoSlideInterval);
});
};
function alterPanelHeight(x) {
if (settings.autoHeight) {
panelHeight = $('.panel:eq(' + x + ')', slider).height()
slider.animate({ height: panelHeight }, settings.autoHeightEaseDuration, settings.autoHeightEaseFunction);
};
};
function autoSlide() {
if (navClicks == 0 || !settings.autoSlideStopWhenClicked) {
if (currentPanel == panelCount) {
var offset = 0;
currentPanel = 1;
} else {
var offset = - (panelWidth*currentPanel);
currentPanel += 1;
};
alterPanelHeight(currentPanel - 1);
// Switch the current tab:
slider.siblings('.coda-nav').find('a').removeClass('current').parents('ul').find('li:eq(' + (currentPanel - 1) + ') a').addClass('current');
// Slide:
$('.panel-container', slider).animate({ marginLeft: offset }, settings.slideEaseDuration, settings.slideEaseFunction);
setTimeout(autoSlide,settings.autoSlideInterval);
};
};
// Kill the preloader
$('.panel', slider).show().end().find("p.loading").remove();
slider.removeClass("preload");
sliderCount++;
});
};
Untitled JavaScript (12-Feb @ 09:52)
Syntax Highlighted Code
- /*
- jQuery Coda-Slider v2.0 - http://www.ndoherty.biz/coda-slider
- Copyright (c) 2009 Niall Doherty
- This plugin available for use in all personal or commercial projects under both MIT and GPL licenses.
- [229 more lines...]
Plain Code
/*
jQuery Coda-Slider v2.0 - http://www.ndoherty.biz/coda-slider
Copyright (c) 2009 Niall Doherty
This plugin available for use in all personal or commercial projects under both MIT and GPL licenses.
*/
$(function(){
// Remove the coda-slider-no-js class from the body
$("body").removeClass("coda-slider-no-js");
// Preloader
$(".coda-slider").children('.panel').hide().end().prepend('<p class="loading">Loading...<br /><img src="images/ajax-loader.gif" alt="loading..." /></p>');
});
var sliderCount = 1;
$.fn.codaSlider = function(settings) {
settings = $.extend({
autoHeight: true,
autoHeightEaseDuration: 1000,
autoHeightEaseFunction: "easeInOutExpo",
autoSlide: false,
autoSlideInterval: 7000,
autoSlideStopWhenClicked: true,
crossLinking: true,
dynamicArrows: true,
dynamicArrowLeftText: "« left",
dynamicArrowRightText: "right »",
dynamicTabs: true,
dynamicTabsAlign: "center",
dynamicTabsPosition: "top",
externalTriggerSelector: "a.xtrig",
firstPanelToLoad: 1,
panelTitleSelector: "h2.title",
slideEaseDuration: 1000,
slideEaseFunction: "easeInOutExpo"
}, settings);
return this.each(function(){
// Uncomment the line below to test your preloader
// alert("Testing preloader");
var slider = $(this);
// If we need arrows
if (settings.dynamicArrows) {
slider.parent().addClass("arrows");
slider.before('<div class="coda-nav-left" id="coda-nav-left-' + sliderCount + '"><a href="#">' + settings.dynamicArrowLeftText + '</a></div>');
slider.after('<div class="coda-nav-right" id="coda-nav-right-' + sliderCount + '"><a href="#">' + settings.dynamicArrowRightText + '</a></div>');
};
var panelWidth = slider.find(".panel").width();
var panelCount = slider.find(".panel").size();
var panelContainerWidth = panelWidth*panelCount;
var navClicks = 0; // Used if autoSlideStopWhenClicked = true
// Surround the collection of panel divs with a container div (wide enough for all panels to be lined up end-to-end)
$('.panel', slider).wrapAll('<div class="panel-container"></div>');
// Specify the width of the container div (wide enough for all panels to be lined up end-to-end)
$(".panel-container", slider).css({ width: panelContainerWidth });
// Specify the current panel.
// If the loaded URL has a hash (cross-linking), we're going to use that hash to give the slider a specific starting position...
if (settings.crossLinking && location.hash && parseInt(location.hash.slice(1)) <= panelCount) {
var currentPanel = parseInt(location.hash.slice(1));
var offset = - (panelWidth*(currentPanel - 1));
$('.panel-container', slider).css({ marginLeft: offset });
// If that's not the case, check to see if we're supposed to load a panel other than Panel 1 initially...
} else if (settings.firstPanelToLoad != 1 && settings.firstPanelToLoad <= panelCount) {
var currentPanel = settings.firstPanelToLoad;
var offset = - (panelWidth*(currentPanel - 1));
$('.panel-container', slider).css({ marginLeft: offset });
// Otherwise, we'll just set the current panel to 1...
} else {
var currentPanel = 1;
};
// Left arrow click
$("#coda-nav-left-" + sliderCount + " a").click(function(){
navClicks++;
if (currentPanel == 1) {
offset = - (panelWidth*(panelCount - 1));
alterPanelHeight(panelCount - 1);
currentPanel = panelCount;
slider.siblings('.coda-nav').find('a.current').removeClass('current').parents('ul').find('li:last a').addClass('current');
} else {
currentPanel -= 1;
alterPanelHeight(currentPanel - 1);
offset = - (panelWidth*(currentPanel - 1));
slider.siblings('.coda-nav').find('a.current').removeClass('current').parent().prev().find('a').addClass('current');
};
$('.panel-container', slider).animate({ marginLeft: offset }, settings.slideEaseDuration, settings.slideEaseFunction);
if (settings.crossLinking) { location.hash = currentPanel }; // Change the URL hash (cross-linking)
return false;
});
// Right arrow click
$('#coda-nav-right-' + sliderCount + ' a').click(function(){
navClicks++;
if (currentPanel == panelCount) {
offset = 0;
currentPanel = 1;
alterPanelHeight(0);
slider.siblings('.coda-nav').find('a.current').removeClass('current').parents('ul').find('a:eq(0)').addClass('current');
} else {
offset = - (panelWidth*currentPanel);
alterPanelHeight(currentPanel);
currentPanel += 1;
slider.siblings('.coda-nav').find('a.current').removeClass('current').parent().next().find('a').addClass('current');
};
$('.panel-container', slider).animate({ marginLeft: offset }, settings.slideEaseDuration, settings.slideEaseFunction);
if (settings.crossLinking) { location.hash = currentPanel }; // Change the URL hash (cross-linking)
return false;
});
// If we need a dynamic menu
if (settings.dynamicTabs) {
var dynamicTabs = '<div class="coda-nav" id="coda-nav-' + sliderCount + '"><ul></ul></div>';
switch (settings.dynamicTabsPosition) {
case "bottom":
slider.parent().append(dynamicTabs);
break;
default:
slider.parent().prepend(dynamicTabs);
break;
};
ul = $('#coda-nav-' + sliderCount + ' ul');
// Create the nav items
$('.panel', slider).each(function(n) {
ul.append('<li class="tab' + (n+1) + '"><a href="#' + (n+1) + '">' + $(this).find(settings.panelTitleSelector).text() + '</a></li>');
});
navContainerWidth = slider.width() + slider.siblings('.coda-nav-left').width() + slider.siblings('.coda-nav-right').width();
ul.parent().css({ width: navContainerWidth });
switch (settings.dynamicTabsAlign) {
case "center":
ul.css({ width: ($("li", ul).width() + 2) * panelCount });
break;
case "right":
ul.css({ float: 'right' });
break;
};
};
// If we need a tabbed nav
$('#coda-nav-' + sliderCount + ' a').each(function(z) {
// What happens when a nav link is clicked
$(this).bind("click", function() {
navClicks++;
$(this).addClass('current').parents('ul').find('a').not($(this)).removeClass('current');
offset = - (panelWidth*z);
alterPanelHeight(z);
currentPanel = z + 1;
$('.panel-container', slider).animate({ marginLeft: offset }, settings.slideEaseDuration, settings.slideEaseFunction);
if (!settings.crossLinking) { return false }; // Don't change the URL hash unless cross-linking is specified
});
});
// External triggers (anywhere on the page)
$(settings.externalTriggerSelector).each(function() {
// Make sure this only affects the targeted slider
if (sliderCount == parseInt($(this).attr("rel").slice(12))) {
$(this).bind("click", function() {
navClicks++;
targetPanel = parseInt($(this).attr("href").slice(1));
offset = - (panelWidth*(targetPanel - 1));
alterPanelHeight(targetPanel - 1);
currentPanel = targetPanel;
// Switch the current tab:
slider.siblings('.coda-nav').find('a').removeClass('current').parents('ul').find('li:eq(' + (targetPanel - 1) + ') a').addClass('current');
// Slide
$('.panel-container', slider).animate({ marginLeft: offset }, settings.slideEaseDuration, settings.slideEaseFunction);
if (!settings.crossLinking) { return false }; // Don't change the URL hash unless cross-linking is specified
});
};
});
// Specify which tab is initially set to "current". Depends on if the loaded URL had a hash or not (cross-linking).
if (settings.crossLinking && location.hash && parseInt(location.hash.slice(1)) <= panelCount) {
$("#coda-nav-" + sliderCount + " a:eq(" + (location.hash.slice(1) - 1) + ")").addClass("current");
// If there's no cross-linking, check to see if we're supposed to load a panel other than Panel 1 initially...
} else if (settings.firstPanelToLoad != 1 && settings.firstPanelToLoad <= panelCount) {
$("#coda-nav-" + sliderCount + " a:eq(" + (settings.firstPanelToLoad - 1) + ")").addClass("current");
// Otherwise we must be loading Panel 1, so make the first tab the current one.
} else {
$("#coda-nav-" + sliderCount + " a:eq(0)").addClass("current");
};
// Set the height of the first panel
if (settings.autoHeight) {
panelHeight = $('.panel:eq(' + (currentPanel - 1) + ')', slider).height();
slider.css({ height: panelHeight });
};
// Trigger autoSlide
if (settings.autoSlide) {
slider.ready(function() {
setTimeout(autoSlide,settings.autoSlideInterval);
});
};
function alterPanelHeight(x) {
if (settings.autoHeight) {
panelHeight = $('.panel:eq(' + x + ')', slider).height()
slider.animate({ height: panelHeight }, settings.autoHeightEaseDuration, settings.autoHeightEaseFunction);
};
};
function autoSlide() {
if (navClicks == 0 || !settings.autoSlideStopWhenClicked) {
if (currentPanel == panelCount) {
var offset = 0;
currentPanel = 1;
} else {
var offset = - (panelWidth*currentPanel);
currentPanel += 1;
};
alterPanelHeight(currentPanel - 1);
// Switch the current tab:
slider.siblings('.coda-nav').find('a').removeClass('current').parents('ul').find('li:eq(' + (currentPanel - 1) + ') a').addClass('current');
// Slide:
$('.panel-container', slider).animate({ marginLeft: offset }, settings.slideEaseDuration, settings.slideEaseFunction);
setTimeout(autoSlide,settings.autoSlideInterval);
};
};
// Kill the preloader
$('.panel', slider).show().end().find("p.loading").remove();
slider.removeClass("preload");
sliderCount++;
});
};
Untitled JavaScript (8-Feb @ 22:52)
Syntax Highlighted Code
- (function($){
- $(document).ready(function(){
- //jQuery code here
- [2 more lines...]
Plain Code
(function($){
$(document).ready(function(){
//jQuery code here
})
})(jQuery)
Untitled JavaScript (21-Jan @ 07:18)
Syntax Highlighted Code
- (function ($) {
- }(jQuery);)
Plain Code
(function ($) {
}(jQuery);)
Untitled JavaScript (15-Jan @ 15:56)
Syntax Highlighted Code
- http://visualjquery.com/
Plain Code
http://visualjquery.com/
Untitled JavaScript (14-Jan @ 10:03)
Syntax Highlighted Code
- {"ConnectionInfo": {
- "commandId": 0,
- "responseRequired": true,
- "connectionId": {
- [10 more lines...]
Plain Code
{"ConnectionInfo": {
"commandId": 0,
"responseRequired": true,
"connectionId": {
"value": "ID:yy.xx.net-57901-1294599217160-5:3943"
},
"clientId": "ID:yy.xx.net-57901-1294599217160-5:3943",
"userName": "",
"password": "",
"brokerMasterConnector": false,
"manageable": false,
"clientMaster": true,
"faultTolerant": false,
"failoverReconnect": false
}}
Untitled JavaScript (21-Dec @ 15:18)
Syntax Highlighted Code
- $.widget( "ui.dialog", $.ui.dialog, {
- _create: function() {
- // do something new here
- this._super( "_create" );
- [1 more lines...]
Plain Code
$.widget( "ui.dialog", $.ui.dialog, {
_create: function() {
// do something new here
this._super( "_create" );
}
});
Untitled JavaScript (28-Nov @ 14:39)
Syntax Highlighted Code
- Ext.setup(
- {
- //TODO: ook een iPad splash scherm
- tabletStartupScreen: 'images/splash.png',
- [84 more lines...]
Plain Code
Ext.setup(
{
//TODO: ook een iPad splash scherm
tabletStartupScreen: 'images/splash.png',
phoneStartupScreen: 'images/splash.png',
icon: 'images/icon.jpg',
glossOnIcon: false,
onReady : function()
{
//Laad series.php welke de XML bestanden inlaad
Ext.Ajax.request({
url : 'php/series.php' ,
method: 'POST',
success: function ( response, request ) {
var myHandler = function(button, event) {
alert (bu);
};
var seriesInfoFromBierdopje = Ext.decode(response.responseText);
var dataJSON = [];
//alert (seriesInfoFromBierdopje.seriesTitles[0][0]);
var series;
//var seriesInfo;
var panel;
var seriesExtraInfo = { name: 'Lost', nextEpisode: '21-20-10'}
for (var x = 0; x <= 1; x++)
{
dataJSON.push({serieTitle: seriesInfoFromBierdopje.seriesTitles[x][0]});
}
Ext.regModel('Series', {
fields: ['serieTitle']
});
var store = new Ext.data.JsonStore({
model: 'Series',
sorters: 'serieTitle',
getGroupString: function(record) {
return record.get('serieTitle')[0];
},
data: dataJSON
});
series = new Ext.List({
fullscreen: true,
itemTpl: '{serieTitle}',
grouped: true,
indexBar: false,
store: store,
onItemDisclosure: {
scope: 'test',
handler: function(record, btn, index) {
var currentSerieTitle = record.get('serieTitle');
panel.setActiveItem(1, 'slide');
}
},
});
series.show();
seriesInfo = new Ext.Template(
'<h2>Serie Title: {serieTitle}</h2>',
'Next episode: {nextEpisode}'
);
panel = new Ext.Panel({
fullscreen: true,
layout: 'card',
items: [series, seriesInfo],
tpl: seriesInfo
});
panel.setActiveItem(0);
},
failure: function ( result, request) {
alert('Failed', result.responseText);
}
});
}
});
Untitled JavaScript (27-Nov @ 07:09)
Syntax Highlighted Code
- view all text mess inbound and outbound as well as media mail
Plain Code
view all text mess inbound and outbound as well as media mail
Untitled JavaScript (27-Nov @ 00:38)
Syntax Highlighted Code
- Ext.setup(
- {
- //TODO: ook een iPad splash scherm
- tabletStartupScreen: 'images/splash.jpg',
- [50 more lines...]
Plain Code
Ext.setup(
{
//TODO: ook een iPad splash scherm
tabletStartupScreen: 'images/splash.jpg',
phoneStartupScreen: 'images/splash.jpg',
icon: 'images/icon.jpg',
glossOnIcon: false,
onReady : function()
{
//Laad series.php welke de XML bestanden inlaad
Ext.Ajax.request({
url : 'php/series.php' ,
method: 'POST',
success: function ( response, request ) {
var serieTitles = Ext.decode(response.responseText);
var dataJSON = [];
for (var x = 0; x <= (serieTitles.length)-1; x++)
{
dataJSON.push({serieTitle: serieTitles[x]});
}
Ext.regModel('Series', {
fields: ['serieTitle']
});
var store = new Ext.data.JsonStore({
model: 'Series',
sorters: 'serieTitle',
getGroupString: function(record) {
return record.get('serieTitle')[0];
},
data: dataJSON
});
var series = new Ext.List({
fullscreen: true,
itemTpl: '{serieTitle}',
grouped: true,
indexBar: false,
store: store
});
series.show();
},
failure: function ( result, request) {
alert('Failed', result.responseText);
}
});
}
});
Untitled JavaScript (27-Nov @ 00:37)
Syntax Highlighted Code
- var serieTitlesFromPHP = new Array();
- Ext.setup(
- {
- [52 more lines...]
Plain Code
var serieTitlesFromPHP = new Array();
Ext.setup(
{
//TODO: ook een iPad splash scherm
tabletStartupScreen: 'images/splash.jpg',
phoneStartupScreen: 'images/splash.jpg',
icon: 'images/icon.jpg',
glossOnIcon: false,
onReady : function()
{
//Laad series.php welke de XML bestanden inlaad
Ext.Ajax.request({
url : 'php/series.php' ,
method: 'POST',
success: function ( response, request ) {
var serieTitles = Ext.decode(response.responseText);
var dataJSON = [];
for (var x = 0; x <= (serieTitles.length)-1; x++)
{
dataJSON.push({serieTitle: serieTitles[x]});
}
Ext.regModel('Series', {
fields: ['serieTitle']
});
var store = new Ext.data.JsonStore({
model: 'Series',
sorters: 'serieTitle',
getGroupString: function(record) {
return record.get('serieTitle')[0];
},
data: dataJSON
});
var series = new Ext.List({
fullscreen: true,
itemTpl: '{serieTitle}',
grouped: true,
indexBar: false,
store: store
});
series.show();
},
failure: function ( result, request) {
alert('Failed', result.responseText);
}
});
}
});
Tick all the checkboxes on a page (23-Nov @ 17:03)
Syntax Highlighted Code
- javascript:for (var i = 0; i < document.getElementsByTagName('input').length; i++) {var e = document.getElementsByTagName('input')[i];if (e.type == 'checkbox') {e.checked = true;}}alert('All checkboxes selected!');
Plain Code
javascript:for (var i = 0; i < document.getElementsByTagName('input').length; i++) {var e = document.getElementsByTagName('input')[i];if (e.type == 'checkbox') {e.checked = true;}}alert('All checkboxes selected!');
Untitled JavaScript (18-Nov @ 22:58)
Syntax Highlighted Code
- else if(xhrflag == false)
- {
- store = new dojo.data.ItemFileWriteStore(
- {
- [21 more lines...]
Plain Code
else if(xhrflag == false)
{
store = new dojo.data.ItemFileWriteStore(
{
if(source.currentWidget.item.type == 'Location' || source.currentWidget.item.type == 'Device')
{
data:
{
identifier: 'id',
label: 'given_name',
items: dojo.fromJson(dataset)
}
}
else:
{
data:
{
identifier: 'id',
label: 'name',
items: dojo.fromJson(dataset)
}
}
});
Untitled JavaScript (11-Nov @ 21:13)
Syntax Highlighted Code
- local input = function(str, num, arr)
- local strt, numt, arrt, tstr, tnum = type(str), type(numt), type(arrt), tostring(str), tonumber(num)
- if strt ~= "string" then
- if type(tstr) ~= "string" then
- [15 more lines...]
Plain Code
local input = function(str, num, arr)
local strt, numt, arrt, tstr, tnum = type(str), type(numt), type(arrt), tostring(str), tonumber(num)
if strt ~= "string" then
if type(tstr) ~= "string" then
error("bad argument #1 to input, expected string got "..strt)
else
str = tstr
end
end
if numt ~= "number" then
if type(tnum) ~= "number" then
error("bad argument #2 to input, expected number got "..numt)
else
num = numt
end
end
if arrt ~= "table" then
error("bad argument #3 to input, expected table got "..arrt)
end
end
Untitled JavaScript (29-Oct @ 20:52)
Syntax Highlighted Code
- function z()
- {
- alert('x');
- }
- z();
Plain Code
function z()
{
alert('x');
}
z();
Untitled JavaScript (26-Oct @ 08:02)
Syntax Highlighted Code
- var a = 'xxx';
- alert(a);
Plain Code
var a = 'xxx';
alert(a);
Untitled JavaScript (25-Oct @ 12:56)
Syntax Highlighted Code
- var accordion = new Accordion('h3.atStart', 'div.atStart', {
- opacity: false,
- onActive: function(toggler, element){
- toggler.setStyle('color', '#ff3300');
- [12 more lines...]
Plain Code
var accordion = new Accordion('h3.atStart', 'div.atStart', {
opacity: false,
onActive: function(toggler, element){
toggler.setStyle('color', '#ff3300');
},
onBackground: function(toggler, element){
toggler.setStyle('color', '#222');
}
}, $('accordion'));
var newTog = new Element('h3', {'class': 'toggler'}).setHTML('Common descent');
var newEl = new Element('div', {'class': 'element'}).setHTML('<p>A group of organisms is said to have common descent if they have a common ancestor. In biology, the theory of universal common descent proposes that all organisms on Earth are descended from a common ancestor or ancestral gene pool.</p><p>A theory of universal common descent based on evolutionary principles was proposed by Charles Darwin in his book The Origin of Species (1859), and later in The Descent of Man (1871). This theory is now generally accepted by biologists, and the last universal common ancestor (LUCA or LUA), that is, the most recent common ancestor of all currently living organisms, is believed to have appeared about 3.9 billion years ago. The theory of a common ancestor between all organisms is one of the principles of evolution, although for single cell organisms and viruses, single phylogeny is disputed</p>');
accordion.addSection(newTog, newEl, 0);
parse url parameter (25-Aug @ 16:49)
Syntax Highlighted Code
- function getUrlParam(name, url) {
- var url = url || window.location.href;
- var queryString = url.substr(url.indexOf('?') + 1);
- var params = queryString.split('&');
- [7 more lines...]
Plain Code
function getUrlParam(name, url) {
var url = url || window.location.href;
var queryString = url.substr(url.indexOf('?') + 1);
var params = queryString.split('&');
for(i in params) {
var paramParts = params[i].split('=');
if(paramParts[0] == name) {
return paramParts[1];
}
}
return undefined;
}
Untitled JavaScript (20-Aug @ 00:08)
Syntax Highlighted Code
- import uuid
- import time
- import random
- [239 more lines...]
Plain Code
import uuid
import time
import random
importdir '/home/yourhomedir/imports'
output_directory = importdir
months_per_year = 12
days_per_month = 30
num_devices_per_client = 100
channels_per_device = 12
def epoch_now_epoch():
return time.time()
def toEpochConverter(timestamp):
# see --> http://docs.python.org/library/time.html
return int(time.mktime(time.strptime(timestamp, "%a, %d %b %Y %H:%M:%S +0000")))
def genEpochsFromRange(timestamp_range, seconds_increment=1):
"""used for generating dummy EMAQ Entries"""
span = [toEpochConverter(item) for item in timestamp_range]
epoch_second = 1.0 # this calibrates seconds_increment to an epoch second
increment = seconds_increment * epoch_second
epoch_timespan = [toEpochConverter(item) for item in timestamp_range]
return [item for item in range(span[0], span[1], int(increment)) if item < span[1]]
def getFixedLengthTimeStamp():
return str(time.time())
chan_id_vals = [1,2,3,4,5,6,7,8,9,10,11,12]
cust_id_vals = ['jbcnle', 'dukenrg', 'mgsinc', 'acmenrg', 'boronrg']
active_nrg_vals = range(1000,12000)
currentrms_vals = range(1,20)
voltagerms_vals = range(1,500)
totalnrg_vals = range(1,1000)
reactivenrg_vals = range(1,1000)
powerfactor_vals = range(1,2)
board_id_vals = range(899,999)
def clientDeviceIds(client):
ids = [ ]
for val in board_id_vals:
id = "MRK09CTST" + '_' + client + '_' + str(val)
ids.append(id)
return ids
def buildEntry( filename,
client,
device,
num_devices_per_client=num_devices_per_client,
channels_per_device=channels_per_device
):
chan_id_val = str(random.choice(chan_id_vals))
cust_id_val = str(random.choice(cust_id_vals))
active_nrg_val = str(random.choice(active_nrg_vals))
currentrms_val = str(random.choice(currentrms_vals))
voltagerms_val = str(random.choice(voltagerms_vals))
totalnrg_val = str( str(random.choice(totalnrg_vals)) )
data_format_val = '5'
reactivenrg_val = str(str(random.choice(reactivenrg_vals)))
powerfactor_val = str( random.choice(powerfactor_vals) )
root = ET.Element("MelrokEMAQ")
emu = ET.SubElement(root, "EMU")
board_id = ET.SubElement(emu, "BoardID")
board_id.text = device
customer_id = ET.SubElement(emu, "CustomerId")
customer_id.text = client
measurements = ET.SubElement(root, "Measurements")
#
current_channel = 1
#
while current_channel <= channels_per_device:
for val in range(0, channels_per_device):
measurement = ET.SubElement(measurements, "Measurement")
measurement.set("channelId", str(val+1))
measurement.set("dataFormat", data_format_val)
timestamp = ET.SubElement(measurement, "Timestamp")
timestamp.text = getFixedLengthTimeStamp()
activenrg = ET.SubElement(measurement, "ActiveEnergy")
activenrg.text = active_nrg_val
currentrms = ET.SubElement(measurement, "CurrentRMS")
currentrms.text = currentrms_val
voltagerms = ET.SubElement(measurement, "VoltageRMS")
voltagerms.text = voltagerms_val
totalnrg = ET.SubElement(measurement, "TotalEnergy")
totalnrg.text = totalnrg_val
reactivenrg = ET.SubElement(measurement, "ReactiveEnergy")
reactivenrg.text = reactivenrg_val
powerfactor = ET.SubElement(measurement, "PowerFactor")
powerfactor.text = powerfactor_val
current_channel += 1
tree = ET.ElementTree(root)
tree.write(filename)
def createDummyData(timestamp_range, seconds_increment=1):
filecount = 0
for client in cust_id_vals:
print client
for device in clientDeviceIds(client):
epochs = genEpochsFromRange(timestamp_range, seconds_increment=seconds_increment)[:]
for epochstamp in epochs:
filename = output_directory + str(epochstamp).replace('.', '') + client + '.xml'
buildEntry(filename, client, device)
filecount += 1
return filecount
if __name__ == '__main__':
timestamp_range = ['Tue, 17 Aug 2010 07:00:00 +0000', 'Tue, 18 Aug 2010 07:00:00 +0000']
print createDummyData(timestamp_range, seconds_increment=15)
Plain Code
from xml.etree import ElementTree as ET
import uuid
import time
import random
importdir '/home/yourhomedir/imports'
output_directory = importdir
months_per_year = 12
days_per_month = 30
num_devices_per_client = 100
channels_per_device = 12
def epoch_now_epoch():
return time.time()
def toEpochConverter(timestamp):
# see --> http://docs.python.org/library/time.html
return int(time.mktime(time.strptime(timestamp, "%a, %d %b %Y %H:%M:%S +0000")))
def genEpochsFromRange(timestamp_range, seconds_increment=1):
"""used for generating dummy EMAQ Entries"""
span = [toEpochConverter(item) for item in timestamp_range]
epoch_second = 1.0 # this calibrates seconds_increment to an epoch second
increment = seconds_increment * epoch_second
epoch_timespan = [toEpochConverter(item) for item in timestamp_range]
return [item for item in range(span[0], span[1], int(increment)) if item < span[1]]
def getFixedLengthTimeStamp():
return str(time.time())
chan_id_vals = [1,2,3,4,5,6,7,8,9,10,11,12]
cust_id_vals = ['jbcnle', 'dukenrg', 'mgsinc', 'acmenrg', 'boronrg']
active_nrg_vals = range(1000,12000)
currentrms_vals = range(1,20)
voltagerms_vals = range(1,500)
totalnrg_vals = range(1,1000)
reactivenrg_vals = range(1,1000)
powerfactor_vals = range(1,2)
board_id_vals = range(899,999)
def clientDeviceIds(client):
ids = [ ]
for val in board_id_vals:
id = "MRK09CTST" + '_' + client + '_' + str(val)
ids.append(id)
return ids
def buildEntry( filename,
client,
device,
num_devices_per_client=num_devices_per_client,
channels_per_device=channels_per_device
):
chan_id_val = str(random.choice(chan_id_vals))
cust_id_val = str(random.choice(cust_id_vals))
active_nrg_val = str(random.choice(active_nrg_vals))
currentrms_val = str(random.choice(currentrms_vals))
voltagerms_val = str(random.choice(voltagerms_vals))
totalnrg_val = str( str(random.choice(totalnrg_vals)) )
data_format_val = '5'
reactivenrg_val = str(str(random.choice(reactivenrg_vals)))
powerfactor_val = str( random.choice(powerfactor_vals) )
root = ET.Element("MelrokEMAQ")
emu = ET.SubElement(root, "EMU")
board_id = ET.SubElement(emu, "BoardID")
board_id.text = device
customer_id = ET.SubElement(emu, "CustomerId")
customer_id.text = client
measurements = ET.SubElement(root, "Measurements")
#
current_channel = 1
#
while current_channel <= channels_per_device:
for val in range(0, channels_per_device):
measurement = ET.SubElement(measurements, "Measurement")
measurement.set("channelId", str(val+1))
measurement.set("dataFormat", data_format_val)
timestamp = ET.SubElement(measurement, "Timestamp")
timestamp.text = getFixedLengthTimeStamp()
activenrg = ET.SubElement(measurement, "ActiveEnergy")
activenrg.text = active_nrg_val
currentrms = ET.SubElement(measurement, "CurrentRMS")
currentrms.text = currentrms_val
voltagerms = ET.SubElement(measurement, "VoltageRMS")
voltagerms.text = voltagerms_val
totalnrg = ET.SubElement(measurement, "TotalEnergy")
totalnrg.text = totalnrg_val
reactivenrg = ET.SubElement(measurement, "ReactiveEnergy")
reactivenrg.text = reactivenrg_val
powerfactor = ET.SubElement(measurement, "PowerFactor")
powerfactor.text = powerfactor_val
current_channel += 1
tree = ET.ElementTree(root)
tree.write(filename)
def createDummyData(timestamp_range, seconds_increment=1):
filecount = 0
for client in cust_id_vals:
print client
for device in clientDeviceIds(client):
epochs = genEpochsFromRange(timestamp_range, seconds_increment=seconds_increment)[:]
for epochstamp in epochs:
filename = output_directory + str(epochstamp).replace('.', '') + client + '.xml'
buildEntry(filename, client, device)
filecount += 1
return filecount
if __name__ == '__main__':
timestamp_range = ['Tue, 17 Aug 2010 07:00:00 +0000', 'Tue, 18 Aug 2010 07:00:00 +0000']
print createDummyData(timestamp_range, seconds_increment=15)
Permalink: http://codedumper.com/ejemi#109
https://myaccount.boostmobile.com/account/boost/boost_account_activity_details.jsp?eventId=6 (18-Aug @ 00:16)
Syntax Highlighted Code
- https://myaccount.boostmobile.com/account/boost/boost_account_activity_details.jsp?eventId=6
Plain Code
https://myaccount.boostmobile.com/account/boost/boost_account_activity_details.jsp?eventId=6
Untitled JavaScript (17-Aug @ 23:47)
Syntax Highlighted Code
- // http://seattlesoftware.wordpress.com/2008/01/16/javascript-query-string/
- $(function() {
- Sentimnt.Search.init();
- Sentimnt.Global.externalLinks();
- [38 more lines...]
Plain Code
// http://seattlesoftware.wordpress.com/2008/01/16/javascript-query-string/
$(function() {
Sentimnt.Search.init();
Sentimnt.Global.externalLinks();
location.querystring = (function() {
// The return is a collection of key/value pairs
var queryStringDictionary = {};
// Gets the query string, starts with '?'
var querystring = decodeURI(location.search);
if (!querystring) {
return {};
}
querystring = querystring.substring(1);
var pairs = querystring.split("&");
// Load the key/values of the return collection
for (var i = 0; i < pairs.length; i++) {
var keyValuePair = pairs[i].split("=");
queryStringDictionary[keyValuePair[0]]
= keyValuePair[1];
}
// toString() returns the key/value pairs concatenated
queryStringDictionary.toString = function() {
if (queryStringDictionary.length == 0) {
return "";
}
var toString = "?";
for (var key in queryStringDictionary) {
toString += key + "=" +
queryStringDictionary[key];
}
return toString;
};
// Return the key/value dictionary
return queryStringDictionary;
})();
Untitled JavaScript (17-Aug @ 23:46)
Syntax Highlighted Code
- $(function() {
- Sentimnt.Search.init();
- Sentimnt.Global.externalLinks();
- [37 more lines...]
Plain Code
$(function() {
Sentimnt.Search.init();
Sentimnt.Global.externalLinks();
location.querystring = (function() {
// The return is a collection of key/value pairs
var queryStringDictionary = {};
// Gets the query string, starts with '?'
var querystring = decodeURI(location.search);
if (!querystring) {
return {};
}
querystring = querystring.substring(1);
var pairs = querystring.split("&");
// Load the key/values of the return collection
for (var i = 0; i < pairs.length; i++) {
var keyValuePair = pairs[i].split("=");
queryStringDictionary[keyValuePair[0]]
= keyValuePair[1];
}
// toString() returns the key/value pairs concatenated
queryStringDictionary.toString = function() {
if (queryStringDictionary.length == 0) {
return "";
}
var toString = "?";
for (var key in queryStringDictionary) {
toString += key + "=" +
queryStringDictionary[key];
}
return toString;
};
// Return the key/value dictionary
return queryStringDictionary;
})();
Untitled JavaScript (17-Aug @ 20:10)
Syntax Highlighted Code
- [color=orange]XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX[/color]
- [color=orange]XXXXXXXXXX Holland will be world champion XXXXXXXXXX[/color]
- [color=orange]XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX[/color]
- [15 more lines...]
Plain Code
[color=orange]XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX[/color]
[color=orange]XXXXXXXXXX Holland will be world champion XXXXXXXXXX[/color]
[color=orange]XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX[/color]
[color=red]XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX[/color]
[color=red]XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX[/color]
[color=red]XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX[/color]
[color=red]XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX[/color]
[color=white]XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX[/color]
[color=white]XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX[/color]
[color=white]XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX[/color]
[color=white]XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX[/color]
[color=blue]XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX[/color]
[color=blue]XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX[/color]
[color=blue]XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX[/color]
[color=blue]XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX[/color]
[color=orange]XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX[/color]
[color=orange]XXXXXXXXXX Holland will be world champion XXXXXXXXXX[/color]
[color=orange]XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX[/color]
Untitled JavaScript (16-Aug @ 01:45)
Syntax Highlighted Code
- https://myaccount.boostmobile.com/account/boost/boost_account_activity_details.jsp?eventId=94
Plain Code
https://myaccount.boostmobile.com/account/boost/boost_account_activity_details.jsp?eventId=94
Select all friends when suggeting a facebook page. (22-Jul @ 06:49)
Syntax Highlighted Code
- javascript:elms=document.getElementById('friends').getElementsByTagName('li');for(var fid in elms){if(typeof elms[fid] === 'object'){fs.click(elms[fid]);}}
Plain Code
javascript:elms=document.getElementById('friends').getElementsByTagName('li');for(var fid in elms){if(typeof elms[fid] === 'object'){fs.click(elms[fid]);}}
Untitled JavaScript (28-Jun @ 20:01)
Syntax Highlighted Code
- http://www.panic.com/coda/
Plain Code
http://www.panic.com/coda/
Untitled JavaScript (3-Jun @ 09:05)
Syntax Highlighted Code
- -webkit-animation-delay: 0s;
- -webkit-animation-direction: normal;
- -webkit-animation-duration: 0s;
- -webkit-animation-fill-mode: none;
- [245 more lines...]
Plain Code
-webkit-animation-delay: 0s;
-webkit-animation-direction: normal;
-webkit-animation-duration: 0s;
-webkit-animation-fill-mode: none;
-webkit-animation-iteration-count: 1;
-webkit-animation-name: none;
-webkit-animation-play-state: running;
-webkit-animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
-webkit-appearance: none;
-webkit-backface-visibility: visible;
-webkit-background-clip: border-box;
-webkit-background-composite: source-over;
-webkit-background-origin: padding-box;
-webkit-background-size: auto auto;
-webkit-border-fit: border;
-webkit-border-horizontal-spacing: 0px;
-webkit-border-image: none;
-webkit-border-vertical-spacing: 0px;
-webkit-box-align: stretch;
-webkit-box-direction: normal;
-webkit-box-flex: 0;
-webkit-box-flex-group: 1;
-webkit-box-lines: single;
-webkit-box-ordinal-group: 1;
-webkit-box-orient: horizontal;
-webkit-box-pack: start;
-webkit-box-reflect: none;
-webkit-box-shadow: none;
-webkit-box-sizing: content-box;
-webkit-color-correction: default;
-webkit-column-break-after: auto;
-webkit-column-break-before: auto;
-webkit-column-break-inside: auto;
-webkit-column-count: auto;
-webkit-column-gap: normal;
-webkit-column-rule-color: black;
-webkit-column-rule-style: none;
-webkit-column-rule-width: 0px;
-webkit-column-width: auto;
-webkit-font-smoothing: auto;
-webkit-highlight: none;
-webkit-line-break: normal;
-webkit-line-clamp: none;
-webkit-margin-bottom-collapse: collapse;
-webkit-margin-top-collapse: collapse;
-webkit-marquee-direction: auto;
-webkit-marquee-increment: 6px;
-webkit-marquee-repetition: infinite;
-webkit-marquee-style: scroll;
-webkit-mask-attachment: scroll;
-webkit-mask-box-image: none;
-webkit-mask-clip: border-box;
-webkit-mask-composite: source-over;
-webkit-mask-image: none;
-webkit-mask-origin: border-box;
-webkit-mask-position: 0% 0%;
-webkit-mask-repeat: repeat;
-webkit-mask-size: auto auto;
-webkit-nbsp-mode: normal;
-webkit-perspective: none;
-webkit-perspective-origin: 640px 323px;
-webkit-rtl-ordering: logical;
-webkit-svg-shadow: none;
-webkit-text-decorations-in-effect: none;
-webkit-text-fill-color: black;
-webkit-text-security: none;
-webkit-text-stroke-color: black;
-webkit-text-stroke-width: 0px;
-webkit-transform: none;
-webkit-transform-origin: 640px 323px;
-webkit-transform-style: flat;
-webkit-transition-delay: 0s;
-webkit-transition-duration: 0s;
-webkit-transition-property: all;
-webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
-webkit-user-drag: auto;
-webkit-user-modify: read-only;
-webkit-user-select: text;
alignment-baseline: auto;
background-attachment: scroll;
background-clip: border-box;
background-color: transparent;
background-image: none;
background-origin: padding-box;
background-position: 0% 0%;
background-repeat: repeat;
background-size: auto auto;
baseline-shift: baseline;
border-bottom-color: black;
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
border-bottom-style: none;
border-bottom-width: 0px;
border-collapse: separate;
border-left-color: black;
border-left-style: none;
border-left-width: 0px;
border-right-color: black;
border-right-style: none;
border-right-width: 0px;
border-top-color: black;
border-top-left-radius: 0px;
border-top-right-radius: 0px;
border-top-style: none;
border-top-width: 0px;
bottom: auto;
caption-side: top;
clear: none;
clip: auto;
clip-path: none;
clip-rule: nonzero;
color: black;
color-interpolation: srgb;
color-interpolation-filters: linearrgb;
color-rendering: auto;
cursor: auto;
direction: ltr;
display: block;
dominant-baseline: auto;
empty-cells: show;
fill: black;
fill-opacity: 1;
fill-rule: nonzero;
filter: none;
float: none;
flood-color: black;
flood-opacity: 1;
font-family: 'Times New Roman';
font-size: 16px;
font-style: normal;
font-variant: normal;
font-weight: normal;
glyph-orientation-horizontal: 0deg;
glyph-orientation-vertical: auto;
height: 647px;
image-rendering: auto;
kerning: ;
left: auto;
letter-spacing: normal;
lighting-color: white;
line-height: normal;
list-style-image: none;
list-style-position: outside;
list-style-type: disc;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0px;
margin-top: 0px;
marker-end: none;
marker-mid: none;
marker-start: none;
mask: none;
max-height: none;
max-width: none;
min-height: 0px;
min-width: 0px;
opacity: 1;
orphans: 2;
outline-color: black;
outline-style: none;
outline-width: 0px;
overflow-x: visible;
overflow-y: visible;
padding-bottom: 0px;
padding-left: 0px;
padding-right: 0px;
padding-top: 0px;
page-break-after: auto;
page-break-before: auto;
page-break-inside: auto;
pointer-events: auto;
position: static;
resize: none;
right: auto;
shape-rendering: auto;
stop-color: black;
stop-opacity: 1;
stroke: none;
stroke-dasharray: ;
stroke-dashoffset: ;
stroke-linecap: butt;
stroke-linejoin: miter;
stroke-miterlimit: 4;
stroke-opacity: 1;
stroke-width: ;
table-layout: auto;
text-align: auto;
text-anchor: start;
text-decoration: none;
text-indent: 0px;
text-overflow: clip;
text-rendering: auto;
text-shadow: none;
text-transform: none;
top: auto;
unicode-bidi: normal;
vertical-align: baseline;
visibility: visible;
white-space: normal;
widows: 2;
width: 1280px;
word-break: normal;
word-spacing: 0px;
word-wrap: normal;
writing-mode: lr-tb;
z-index: auto;
zoom: 1;
elementâs âstyleâ attribute
Style Attribute
margin: 0px;
user agent stylesheet
body
display: block;
margin: 8px;
margin-top: 8px;
margin-right: 8px;
margin-bottom: 8px;
margin-left: 8px;
Metrics
Properties
Prototype
HTMLBodyElement
aLink: ""
attributes: NamedNodeMap
background: ""
baseURI: "https://myaccount.boostmobile.com/boost_nav/images/subnav_account_details.gif"
bgColor: ""
childElementCount: 1
childNodes: NodeList (1)
children: HTMLCollection (1)
className: ""
clientHeight: 647
clientLeft: 0
clientTop: 0
clientWidth: 1280
contentEditable: "false"
dir: ""
draggable: false
firstChild: HTMLImageElement
firstElementChild: HTMLImageElement
id: ""
innerHTML: "<img style="-webkit-user-select: none; " src="https://myaccount.boostmobile.com/boost_nav/images/subâ¦"
innerText: ""
isContentEditable: false
lang: ""
lastChild: HTMLImageElement
lastElementChild: HTMLImageElement
link: ""
localName: "body"
Untitled JavaScript (14-May @ 01:45)
Syntax Highlighted Code
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
- <html>
- <head>
- [25 more lines...]
Plain Code
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<script language="javascript">
function f(){ count=0;
for(t=0;t<=2;t++)
{if(document.applic.lang[t].checked) count++ }
if (count==0)
alert("dear "+ document.applic.firstname.value+"\n" +" it is a pity you haven't interest in languages"
else if (count==3) { alert("a language too much")}
else alert("dear "+document.applic.firstname.value+"\n"+"we congratulate you for your sincere interest in lanuages")
}
</script>
</head><body>
<form name="applic"><p>
your name:
<input name="firstname" type="textbox"> </p>
i apply for the following courses (maximum two languages) <p><p>
<input name="lang" type="checkbox"> spanish <br>
<input name="lang" type="checkbox"> french <br>
<input name="lang" type="checkbox"> italian </p>
<input value=" apply " onclick="f()" type="button">
</form>
</body></html>
Untitled JavaScript (6-May @ 08:00)
Syntax Highlighted Code
- // JavaScript Document
- function Rollover(){
- if(document.getElementsByTagName){
- [59 more lines...]
Plain Code
// JavaScript Document
function Rollover(){
if(document.getElementsByTagName){
var images = document.getElementsByTagName("img");
for(var i=0; i < images.length; i++){
if(images[i].getAttribute("src").match("_off."))
{
images[i].onmouseover = function(){
this.setAttribute("src",this.getAttribute("src").replace("_off.","_on."));
}
images[i].onmouseout = function(){
this.setAttribute("src",this.getAttribute("src").replace("_on.","_off."));
}
}
}
}
}
if(window.addEventListener){
window.addEventListener("load",Rollover,false);
}
else if(window.attachEvent){
window.attachEvent("onload",Rollover);
}
var highlightcolor="#EAF3FB"
var ns6=document.getElementById&&!document.all
var previous=''
var eventobj
var intended=/INPUT|TEXTAREA/
function checkel(which){
if (which.style&&intended.test(which.tagName)){
if (ns6&&eventobj.nodeType==3)
eventobj=eventobj.parentNode.parentNode
return true
}
else
return false
}
function highlight(e){
eventobj=ns6? e.target : event.srcElement
if (previous!=''){
if (checkel(previous))
previous.style.backgroundColor=''
previous=eventobj
if (checkel(eventobj))
eventobj.style.backgroundColor=highlightcolor
}
else{
if (checkel(eventobj))
eventobj.style.backgroundColor=highlightcolor
previous=eventobj
}
}
Untitled JavaScript (30-Apr @ 20:09)
Syntax Highlighted Code
- javascript:genxml()
Plain Code
javascript:genxml()
Untitled JavaScript (20-Apr @ 20:41)
Syntax Highlighted Code
- s.linkTrackVars='eVar14,events';
- s.eVar7 =this;
- s.linkTrackEvents='event37';
- s.tl(this,'o',jQuery(this).text());
- [3 more lines...]
Plain Code
s.linkTrackVars='eVar14,events';
s.eVar7 =this;
s.linkTrackEvents='event37';
s.tl(this,'o',jQuery(this).text());
_gaq.push(['_trackEvent','Twitter',jQuery(this).text()]);
Untitled JavaScript (19-Apr @ 14:27)
Syntax Highlighted Code
- Class('MyClass')(function(){
- });
Plain Code
Class('MyClass')(function(){
});
Untitled JavaScript (10-Apr @ 15:07)
Syntax Highlighted Code
- function test ()
- {
- alert('test');
- }
Plain Code
function test ()
{
alert('test');
}
Untitled JavaScript (9-Apr @ 16:52)
Syntax Highlighted Code
- jk.jlkjlkjlkjlkj
Plain Code
jk.jlkjlkjlkjlkj
Untitled JavaScript (8-Apr @ 09:43)
Syntax Highlighted Code
- alert("dfsd");
Plain Code
alert("dfsd");