<table width="1100px" height="500px" border="0" bordercolor="teal" background="https://forumupload.ru/uploads/0001/52/b0/7489-1-f.jpg" background-attachment="fixed" background-repeat="no-repeat">
<tr><td height="195px" width="28px"></td><td width="355px"></td><td width="260px"></td><td><b>Администраторы:</b> Александра Чвикова, Влад Топалов, Елена Беркова, Игорь Верник, Виктория Боня, Меседа Багаудинова. <br><b>Модераторы:</b> Пит Венц, Юлиана Козина, Юлия Лысенко.<br><br><br><br><br><br><br><br></td><td width="30px"></td></tr>
<tr>
<td height="164px" cellpadding="3px"></td>
<td cellpadding="3px"><b><u>Дата:</u></b> 12 ноября 2008 года, среда.<br> <br><b><u>События в игре:</u></b> Все наши участники отправились в кругосветное путешествие на шикарном лайнере <a href="http://lifeshow.mybb.ru/viewforum.php?id=21">Queen Mary</a>. Но кто предполагал, что на этом корабле мечты они окажутся совсем одни? А тут еще и шторм надвигается... Участники переживают, волнение растет, ведь не каждый день оказываешься брошенным в открытом море. </td>
<td cellpadding="3px"></td>
<td cellpadding="3px"></td>
<td width="30px"></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td width="30px"></td>
</tr>
</table>
<link rel="shortcut icon" href="http://s59.radikal.ru/i166/0810/ed/150570b0fb35.png" type="image/x-icon">
<style type="text/css">
#pun-title .title-logo span {display: none;}
</style>
<style type="text/css">
#pun {background-color: #b4d0f9; transparent;}
</style>
<style>
#pun #pun-index #pun-announcement h2 span {display: none}
</style>
<script type="text/javascript">
document.getElementsByClassName = function(className) {
var children = document.getElementsByTagName('*') || document.all;
var elements = new Array();
for (var i = 0; i < children.length; i++) {
var child = children[i];
var classNames = child.className.split(' ');
for (var j = 0; j < classNames.length; j++) {
if (classNames[j] == className) {
elements.push(child);
break;
}
}
}
return elements;
}
var Reflection = {
defaultHeight : 0.5,
defaultOpacity: 0.5,
add: function(image, options) {
Reflection.remove(image);
doptions = { "height" : Reflection.defaultHeight, "opacity" : Reflection.defaultOpacity }
if (options) {
for (var i in doptions) {
if (!options[i]) {
options[i] = doptions[i];
}
}
} else {
options = doptions;
}
try {
var d = document.createElement('div');
var p = image;
var classes = p.className.split(' ');
var newClasses = '';
for (j=0;j<classes.length;j++) {
if (classes[j] != "reflect") {
if (newClasses) {
newClasses += ' '
}
newClasses += classes[j];
}
}
var reflectionHeight = Math.floor(p.height*options['height']);
var divHeight = Math.floor(p.height*(1+options['height']));
var reflectionWidth = p.width;
if (document.all && !window.opera) {
/* Fix hyperlinks */
if(p.parentElement.tagName == 'A') {
var d = document.createElement('a');
d.href = p.parentElement.href;
}
/* Copy original image's classes & styles to div */
d.className = newClasses;
p.className = 'reflected';
d.style.cssText = p.style.cssText;
p.style.cssText = 'vertical-align: bottom';
var reflection = document.createElement('img');
reflection.src = p.src;
reflection.style.width = reflectionWidth+'px';
reflection.style.marginBottom = "-"+(p.height-reflectionHeight)+'px';
reflection.style.filter = 'flipv progid:DXImageTransform.Microsoft.Alpha(opacity='+(options['opacity']*100)+', style=1, finishOpacity=0, startx=0, starty=0, finishx=0, finishy='+(options['height']*100)+')';
d.style.width = reflectionWidth+'px';
d.style.height = divHeight+'px';
p.parentNode.replaceChild(d, p);
d.appendChild(p);
d.appendChild(reflection);
} else {
var canvas = document.createElement('canvas');
if (canvas.getContext) {
/* Copy original image's classes & styles to div */
d.className = newClasses;
p.className = 'reflected';
d.style.cssText = p.style.cssText;
p.style.cssText = 'vertical-align: bottom';
var context = canvas.getContext("2d");
canvas.style.height = reflectionHeight+'px';
canvas.style.width = reflectionWidth+'px';
canvas.height = reflectionHeight;
canvas.width = reflectionWidth;
d.style.width = reflectionWidth+'px';
d.style.height = divHeight+'px';
p.parentNode.replaceChild(d, p);
d.appendChild(p);
d.appendChild(canvas);
context.save();
context.translate(0,image.height-1);
context.scale(1,-1);
context.drawImage(image, 0, 0, reflectionWidth, image.height);
context.restore();
context.globalCompositeOperation = "destination-out";
var gradient = context.createLinearGradient(0, 0, 0, reflectionHeight);
gradient.addColorStop(1, "rgba(255, 255, 255, 1.0)");
gradient.addColorStop(0, "rgba(255, 255, 255, "+(1-options['opacity'])+")");
context.fillStyle = gradient;
if (navigator.appVersion.indexOf('WebKit') != -1) {
context.fill();
} else {
context.fillRect(0, 0, reflectionWidth, reflectionHeight*2);
}
}
}
} catch (e) {
}
},
remove : function(image) {
if (image.className == "reflected") {
image.className = image.parentNode.className;
image.parentNode.parentNode.replaceChild(image, image.parentNode);
}
}
}
function addReflections() {
var rimages = document.getElementsByClassName('reflect');
for (i=0;i<rimages.length;i++) {
var rheight = null;
var ropacity = null;
var classes = rimages[i].className.split(' ');
for (j=0;j<classes.length;j++) {
if (classes[j].indexOf("rheight") == 0) {
var rheight = classes[j].substring(7)/100;
} else if (classes[j].indexOf("ropacity") == 0) {
var ropacity = classes[j].substring(8)/100;
}
}
Reflection.add(rimages[i], { height: rheight, opacity : ropacity});
}
}
var previousOnload = window.onload;
window.onload = function () { if(previousOnload) previousOnload(); addReflections(); }
</script>
<style type="text/css">
body {
font-size: 14px;
}
</style>
<style> #pun-title table tbody tr .title-logo-tdr {position: absolute; z-index: 1; left: 5800px; top: 2px
}
</style>
<style>
HTML, BODY , #pun, #pun #pun-index #pun-main .category .container table thead tr .tcl, #pun-main .category .container table .hasicon .alt1 .tcl .intd .tclcon,
#pun-main .category .container table .hasicon .alt2 .tcl .intd .tclcon {text-align: center}
</style>
<style type="text/css">
.pa-adnote{ text-align: center;}
.pa-from{ text-align: center;}
.pa-reg{ text-align: center;}
.pa-posts{ text-align: center;}
.pa-reputation{ text-align: center;}
.pa-sex{ text-align: center;}
.pa-icq{ text-align: center;}
.pa-ip{ text-align: center;}
.pa-online{ text-align: center;}
.pa-age{ text-align: center;}
.pa-mailagent{ text-align: center;}
.pa-reg { text-align: center;}
.pa-avatar, .pa-title, .pa-author { text-align: center;}
.pa-time-visit{ text-align: center;}
.pa-last-visit{ text-align: center;}
.pa-fld1{ text-align: center;}
.pa-fld2{ text-align: center;}
.pa-fld3{ text-align: center;}
</style>
<script type="text/javascript">
defaultPict = "https://forumupload.ru/uploads/0005/fd/27/164-1.png"
var arr=document.getElementsByTagName("ul")
i=1
while(arr[++i]){
str=arr[i].innerHTML
if(str.indexOf("pa-avatar")==-1) {
q=str.toLowerCase()
if((pos=q.indexOf("<li class=pa-from>"))!=-1 || (pos=q.indexOf("<li class=\"pa-from\">"))!=-1 || (pos=q.indexOf("<li class=pa-reg>"))!=-1 || (pos=q.indexOf("<li class=\"pa-reg\">"))!=-1){
nstr =str.substring(0,pos)
nstr+="<li class=\"pa-avatar item2\"><img src="+ defaultPict +" alt=\"Аватар\" /></li>"
nstr+=str.substring(pos)
arr[i].innerHTML=nstr
}}}
</script>
<style type="text/css">
HTML, BODY {background-image: url("https://forumupload.ru/uploads/0001/52/b0/7491-1.jpg")!important; background-attachment: fixed; background-repeat: repeat !important;}
</style>
<style>Div.icon {
background-image: url(https://forumupload.ru/uploads/0001/52/b0/7496-1.png);
background-repeat: no-repeat; }
Tr.inew Div.icon {
background-image: url(https://forumupload.ru/uploads/0001/52/b0/7496-2.png);
background-repeat: no-repeat; }</style>
<table valign="top" width="1100px" border="0" cellspacing="0" cellpadding="0">
<TR valign="top" width="1100px"><TD height =100% width=0 valign="top">
<table bgColor=#F0F8FD valign="top" cellspacing="0" cellpadding="1"><tr valign="top"><td width="210px" valign="top">
<center><img src="http://i25.tinypic.com/14dgd49.jpg"></br><br>
<div class="maintitle">
</div>
<font size=1><b><i>Здравствуйте!!!</i><br></b>Вы попали на ролевую - <b><i>We And Our Dreams</i></b>.<br>Добро пожаловать все-все-все!!! Мы будем безумно рады, если вы останетесь с нами!!! Мы уверенны, что с нами, вы будете себя чувствовать, как дома! С любовью, ваша администрация.<br>
<b>Регистрируйтесь!!!</b>
<div class="maintitle">
</div>
<div class="tablepad"><span class='desc' >
<img src="http://i32.tinypic.com/2hexatl.jpg"></br>
<form>
<select name="select" class="forminput" onchange="location.href=(form.select.options[form.select.selectedIndex].value)">
<option>|Navigation|</option>
<option value="http://weandourdreams.mybb.ru/viewtopic.php?id=90"><small>●правила</small></option>
<option value="http://weandourdreams.mybb.ru/viewtopic.php?id=65"><small>●наши мероприятия</small></option>
<option value="http://weandourdreams.mybb.ru/viewtopic.php?id=73"><small>●свободные внешности</small></option>
<option value="http://weandourdreams.mybb.ru/viewtopic.php?id=3"><small>●занятые внешности</small></option>
<option value="http://weandourdreams.mybb.ru/viewtopic.php?id=10"><small>●анкеты</small></option>
<option value="http://weandourdreams.mybb.ru/viewtopic.php?id=12&p=3#p571"><small>●реклама</small></option>
</select>
</form>
</span>
</span></div>
</div>
<br /><br>
<div class="maintitle">
</div>
<div class="tablepad"><span class='desc' >
<br><br>Внимание!!!Дорогие участники! У нас проходит акция, по которой вы получаете поощрение администрации в виде: + в профиль, большое количество авок и т.д. именно для вас ну и конечно же теплуй прием и дружелюбную атмосферу!!!</span>
</div>
</div>
</div>
<br />
<div class="titlemedium"></div>
<div class="tablepad"><span class='desc' >
<img src="http://i30.tinypic.com/2vht7rb.jpg" border="0" ></a><br>
<a href="http://weandourdreams.mybb.ru/profile.php?id=2" title="Маргарита Агибалова"><img src="http://i27.tinypic.com/2ps1z55.jpg" border="0" style="filter:alpha(opacity=20);-moz-opacity:0.6" onMouseover="makevisible(this,0)" onMouseout="makevisible(this,1)"></a> <br>
<a href="http://weandourdreams.mybb.ru/profile.php?id=15" title="Дарья Черных"><img src="http://i30.tinypic.com/2woayye.jpg" border="0" style="filter:alpha(opacity=20);-moz-opacity:0.6" onMouseover="makevisible(this,0)" onMouseout="makevisible(this,1)"></a><br>
<a href="http://weandourdreams.mybb.ru/profile.php?id=25" title="Ани Лорак"><img src="http://i28.tinypic.com/i6zfuo.jpg" border="0" style="filter:alpha(opacity=20);-moz-opacity:0.6" onMouseover="makevisible(this,0)" onMouseout="makevisible(this,1)"></a>
<a href="http://weandourdreams.mybb.ru/profile.php?section=admin&id=26" title="Аня Шурочкина"><img src="http://i27.tinypic.com/2d6tslh.jpg" border="0" style="filter:alpha(opacity=20);-moz-opacity:0.6" onMouseover="makevisible(this,0)" onMouseout="makevisible(this,1)"></a>
<br>
</span>
</span></div>
</div>
<br >
<br>
<img src="http://i31.tinypic.com/2rost1w.jpg" border="0"><br>
<br>
<br>Оригинальная идея оформления форума была позаимствована у американских и итальянских форумов, базирующихся на © afterfate и © invisionfree хостингах, а так же у наших отечественных коллег. <br> <br>
<div class="maintitle">
</div>
<br></div>
</left></td></tr></table></td>
<td valign=top width="890px">
<table class="aa" bgColor="#F0F8FD" cellspacing="2" cellpadding="0" width="890px" align=left><TR><TD align=left></div>
</div>
<div id="pun-title" class="section">
<table id="title-logo-table" cellspacing="0">
</script>
</td>
</tr>
</table>
</div>
</div>