Multimedia system
17/08/2008 @ 18:16:05 hrs, published in Editing
I finished with this, it would help me to administrate all my media files that i would publish here.

Example: http://www.zseven.net/multimedia/view/20080817155900


Base URL: http://www.zseven.net/multimedia

RSS, WDB, Anti-injection, Anti-HTML
17/08/2008 @ 01:41:04 hrs, published in Editing
Like you see i almost done with the tasks. I have to reorganizate everything because of the new way of ge the language, that is really comfortable.

The RSS is working, again our sponsor is FeedBurner.
To have an idea of how to make a RS you just need to create a new file (in my case with .php extension) and make a print in it of all the news, after that link it with FeedBurner.
Remember that the RSS should be XML files, so before put your PHP code (we save it as PHP so we want it that work as it) you should put the next labels:
<?
header("Content-type: application/xml");
echo "<?";
echo "xml version=\"1.0\" encoding=\"iso-8859-1\"";
echo "?>\r\n";
echo "<?";
echo "xml-stylesheet type=\"text/css\" href=\"".$style."\"";
echo "?>\r\n";?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
// Here should be your code for the RSS
</channel>
</rss>
* Its a simple way to do it, where your PHP should print the records of the database should be between the labels <item></item>, read something about how to do RSS and you would understand me.

Also i finally implemeted the code to not html insertions in my comments and with this dont allow to the users to insert images or frames with inappropiate webpages. And a code that dont allow to make PHP injections, this were teach it by Hsilamot, this is a little paranoic with the safety and he have amazing results with ALL his methods.el es un poco paranoico con eso de la seguridad y ha tenido muy buenos resultados con TODOS los métodos que utiliza.
<?
function nospammers($code){
$s1=array("&", "<", ">");
$s2=array("", "", "");
return str_replace($s1, $s2, $code);
}
function nophpinjection($code){
$s1=array("'", "\"");
$s2=array("\'", "\"");
return str_replace($s1, $s2, $code);
}
?>
* The codes only replace symbols. In the HTML code it replace HTML labels for nothing making all plain text. In the case of the injections code it replace the quotes of any kind for quotes that cant be manipulated to make an injection.

The WDB structure (Web-data-base) is just to edit all the frames that you are seeing, just making a relation between the friendly urls and the data base.

The other things you already know them and also i need to develop somethings else.

This website had been test in the next browsers (% of efficient):
95%
100%
95%
95%
98%
* The variations are about tables interpretations.

Cookies
15/08/2008 @ 23:10:00 hrs, published in Editing
Since now this website use cookies, i decided that have yoursite.com/es or yoursite.com/en (the language) didnt seems nice.

Now i use cookies to save the preferences of language of the user, if you want to know how read this: (actually are sessions i think that are more safety than the cookies)

<?
// Session start
session_start();
// If the user want to change the language the variable 'language_of_user' from the URL should have it
if($_GET['language_of_user']=="") {
// This verify that the session doesnt have another language
if($_SESSION['language_in_session']=="") {
// If it doesnt have it, the code take it from the browser
$language_default=substr($_SERVER['HTTP_ACCEPT_LANGUAGE'],0, 2);
// In my case i just use two languages, so if the browser are not any of this it take English as a default
if($language_default=="es"){ }
if($language_default=="en"){ } else { $language_default="en"; }
} else { $LANGUAGE=$_SESSION['LANGUAGESESSION'];
if($language_default=="es"){ }
if($language_default=="en"){ } else { $language_default="en"; } }
} else {
// If 'language_of_user' have a language it take it over everything else in the session.
$language_default=$_GET['language_of_user'];
$_SESSION['language_in_session']=$language_default;
}
?>

I hope that this will help you, if you have some doubts you can read the last article about this topic.

FLV, just the beginning
22/07/2008 @ 20:40:02 hrs, published in Editing
Like you see my flv player works without any troubble, you can download if you want it here:
http://rapidshare.com/files/131760630/22072008z7.rar
Source: http://www.jeroenwijering.com/

And the code:
<embed src="player.swf" width="300" height="250" allowscriptaccess="always"
allowfullscreen="true" flashvars="file=file.flv"/></embed>

With this script i want to do a multimedia system where i can put all my videos, photos and sounds, more advanced that anything that i ever done but very funtional, the idea is that it give me the code just to paste it here and also give it to you.


Note: You can customized this player with logotype, colors, and other things just changing this line:
flashvars="file=file.flv&screencolor=0x000000&logo=logo.png&link=http://www.zseven.net"

Dont play
21/06/2008 @ 00:39:02 hrs, published in Editing

I have some, but not all. I finish something that come to my mind, “Notes”, in this section I will write my projects and all I finish,

In this moment you can register in the webpage, but you still cant log in. But is something.

I start the shop, but I need to finish the registration, I will use it to the shop.


Internet browser
20/06/2008 @ 18:47:03 hrs, published in Editing

Yesterday i dont remember. Like a last detail of my update, i made the webpage to 4 browsers:
Firefox
Opera
Internet Explorer
Safari

Is strange how you "do" a webpage to different browsers, but is true.
To them who dont know every browser have a different codification (talking about Internet Explorer), a few use the standards. Thats way the Internet is how it is..

 

And with this, i get out Opera of my list, showing that is a browser of shit. Now i declare that i use Firefox, to the explorer domination.


What worry
19/06/2008 @ 22:13:21 hrs, published in Editing
Another day, another coin. Someone saids that one time, but for me the day per day is if i done something that bring me something good later.

Today I development a little more the blog that are in front of your eyes. The search engine works, the curriculum section, leaving more to do.


All the day it spend it in making that a PHP code create a PDF of what i want. In this case I made it with a script call HTML2(F)PDF, is an adaptation of the original HTML2PDF.
I try three library’s and this was the only, unless to me, that give me what I want.

Link: http://rapidshare.com/files/123722818/20062008z7.rar
* If you want to have it.

I made it adaptations, the one that you are going to download is the original. The creator feels funny adding advertise of his website at all PDF creation, he is a subdevelopment, but I don’t going to discuss. Here is his rights:
http://html2fpdf.sourceforge.net/

* If you gonna use it take on count that the PHP you gonna do is the executable, it make a direct download, don’t try to include it on a webpage. Put it like a link.

* Sometimes is helpful use something already development, but in my personal opinion, i dont like the ones that make them call developments and use Wordpress (great utility).

Why did i use PDF?
I like to be like some blogs of forums that give you the option to download it articles or discussions in PDF. In this case I use it to the Curriculum section, to generate a PDF with it if the user wants it. Is a good training.

If you need help to edit it, let me know at comments.


Increasingly
18/06/2008 @ 22:14:43 hrs, published in Editing
Today has been a productive day for my blog and mi knowledge about it. I should be studying for Circuits or doing my Lionbridge exam but I am here.

Today I finished many thing, I made you a list with the percent of working:

  1. Home 100%
  2. News 90%
  3. Categories 100%
  4. Comments 90%
  5. Recommend us 100%
  6. News file 100%
  7. Profile 100%
  8. Curriculum 0%
  9. Links 50%
  10. Contact 5%
  11. Search 5%
  12. Login 0%
  13. Shop 0%
  14. Calendary 0%

All that have more tan 80% already work and can be used by you. Like you see i add new Project to implement in my blog, all to trying.

I can say that i have the better codification that i ever made, but it still have details to fix.
The webpage will be and is until this moment 100% friendly.
I been having troubles with PandaSux with some mischievous that believe that put frames is make Hack to a website. I implement a protection of the use of HTML codeo n my comments.

I hope all is of your like.

 

What if friendly?
Is dont have this http://www.zseven.net/news.php?id=1 have this http://www.zseven.net/news/Welcome

What is iframe?
Read a HTML manual, is like a window in another window..

How can I protect my data base in a simple way?
In a simple way you can substitute all the characters that use in HTML and PHP like “<” and “>”. It substitute will be “”. Example of the code:
function myprotection($texttoedit){
$substituteto=array("&", "<", ">");
$substitute=array("", "", "");
return str_replace($substituteto, $substitute, $texttoedit);
}

I hope that be useful.


Redirect visitors by language
02/06/2008 @ 17:42:03 hrs, published in Editing
Today i put all the links on the webpage, but still don’t work.

Behind I see the way that the pages have two or more languages, giving to the user the choice.
Now I made that the language has been choose automatically.

How it works?
Take the language that the Internet browser has been configured and tell to the webpage to it put in that language (if we have avaible the language).
This save some values time of our life.
* In the case that the users don’t configure the browser language appropriately, the language can be change at the final of this page.

The development is very simple, i put the script on the line 0 on my index. If you want to use my script you can see it now:
<?php // The variable $SERVER['HTTP_ACCEPT_LANGUAGE'] give us the language of the browser in the code of the same browser.
$language_browser = $_SERVER['HTTP_ACCEPT_LANGUAGE'];
// This code take the first two letters of the variable $language_browser In this case this are different even each language. Example: “en” english.
$language_browser_new = substr($language_browser, 0, 2);
// Now make a condition, $language_browser_new have our language, if this are equal to “es”, make the variable $language equal to “es”, if it is equal to “en”, make the variable equal to “en”, but in case that are not of this (because the language’s are not avaibles) make the variable equal to “en” (English, our predetermined language). if($language_browser_new=="es"){ $language = "es"; } else {
if($language_browser_new=="en"){ $language = "en"; } else { $language = "en"; }
} ?>

Then, here finish our code.
* Remember that here I need that make equal the language, but in your case you can use the function header to redirect to some page, example: english.php .

My languages url’s are the next:
http://www.zseven.net/en - English
http://www.zseven.net/es - Spanish

We hope that some day expand this.


New presentation
01/06/2008 @ 10:31:05 hrs, published in Editing
I start with a new system for the blog, as it will be realize. This will give me pore possibilities of grow than the previous one, give me more control over everything.

I’ve been very careful developing, with the best code possible, more subtle. That’s why it takes me more time than usual.
I must inform that the present operates on 25%, almost all present at this window that you are watching.
The system of multi-language works but I am unable to enable it until I complete the entire blog.
Any link works at this moment, so do not try to click them, simple read, for the moment, as I finalized more sections I will inform in this category, specially for the handling of the blog.


An extra date, recently I made a new category “My files”, will be to put all that software that changes the surfing, design or simple the way to be in the PC.
For all those who are really interested seeing quality software as well as I do you can consult it here.
Remember that all this software is in a information way, help us to see if the software are really useful, and we are not buying something that dont help.

However, i must expand
08/05/2008 @ 01:10:03 hrs, published in Editing
I decided to give a final twist to this website, I don’t finish jet but today I made the most difficult.
As you see, I added the possibility of surf in two languages. My English are not the best and my Spanish neither, but is an opportunity to expand my visits and that ones that not visit me jet.
This is a prototype that will take me to reloaded all my other websites that I found that need it.

Im sure that I learn something of this, im sure that the English are not sufficient to express what you can express with the Spanish, but because of the globalization I can close to start to make this kind of websites, specially if are about work, curricula and projects, out of that capacity.


Its more probable that the world know English that Spanish I guess. But is good to become familiar with the language.


Apart from all this I will make a decent blog of this, not a diary, a blog.



• RSS
• Multimedia system
• Anti-injection
• WBD structure
• PDF creator
• Notes
• Search engine
• Contact
• Links
• Curriculum
• Profile
• Flash images
• Login
• FLV player
• Shop
If you want to be here, contact us.


Akapon Networks


PandaSux


ZSeven Diary


http://infstuff.freehostia.com/autob55.html auto http://infstuff.freehostia.com/auto81a.html auto http://infstuff.freehostia.com/autoe8d.html auto http://infstuff.webng.com/auto10f.html auto http://infstuff.webng.com/autof95.html auto http://infstuff.webng.com/auto42d.html auto http://infstuff.t35.com/auto285.html auto http://infstuff.t35.com/autof7a.html auto http://infstuff.t35.com/auto048.html auto http://infstuff.50webs.com/auto2bd.html auto http://infstuff.50webs.com/auto2b7.html auto http://infstuff.50webs.com/autoc1d.html auto http://infstuff.psend.com/auto2a2.html auto http://infstuff.psend.com/auto3cb.html auto http://infstuff.psend.com/auto2e9.html auto http://infstuff.strefa.pl/autoaf2.html auto http://infstuff.strefa.pl/auto867.html auto http://infstuff.strefa.pl/autoe9e.html auto
Froautonds writed this comment the 23/10/2008 @ 19:47:47 hrs
rent rolls royce in nj http://mapplan.fizwig.com/inc62.html birds of tokoyo http://mapplan.t35.com/in942.html in http://likas.idoo.com/in0e5.html in black and white with color coming throughphotos http://koebola.w8w.pl/in873.html in http://mapplan.seitenclique.net/fora17.html for photos of real native americans http://mapplany.001webs.com/ined1.html in http://malox80.idoo.com/in77c.html in tomcar http://ammar001.idoo.com/tof1e.html to http://karrol.w8w.pl/for1a1.html for http://ligosfa.t35.com/fora2d.html for zanzibar restaurant in washington dc a href=" http://mapplan.strefa.pl/forf8f.html " for /a a href=" http://voll.p2web.biz/to709.html " to /a a href=" http://frilka.friko.pl/in458.html " in /a ebay automatic bidding a href=" http://mapplan.za.pl/incf7.html " in /a a href=" http://mapplan.seitenclique.net/in64a.html " in /a a href=" http://ammar001.idoo.com/ind96.html " in /a sabrina hussein a href=" http://mapplan.seitenclique.net/in6ee.html " in /a a href=" http://members.lycos.nl/mapplan/in8eb.html " in /a a href=" http://mapplany.001webs.com/incc1.html " in /a why is calamari bad to eat if i have high choleste a href=" http://mapplany.omgfreehost.com/inb65.html " in /a a href=" http://mapplan.hostaim.com/for2b5.html " for /a a href=" http://ligosfa.t35.com/ind16.html " in /a free indian fuck
Nexunuri writed this comment the 20/11/2008 @ 10:52:08 hrs
three wheelers for less http://mapplan.hostaim.com/forf16.html moore performance marine http://likas.idoo.com/in89d.html in http://mapplany.001webs.com/in900.html in home with stair tower http://googi.idoo.com/the174.html the http://mapplan.seitenclique.net/in927.html in seattle projector rental http://mapplanz.yoyohost.com/the31d.html the http://mapplan.007sites.com/fore6e.html for carol ann tomlinson http://noner.w8w.pl/inc6e.html in http://woodyh.idoo.com/for9e7.html for http://mapplan.za.pl/to9ae.html to how to do master proposal a href=" http://lalalo.w8w.pl/in4c8.html " in /a a href=" http://mapplan.fizwig.com/foreb3.html " for /a a href=" http://frilka.friko.pl/for473.html " for /a gemtop a href=" http://mapplan.hostevo.com/tof8d.html " to /a a href=" http://googi.idoo.com/for32b.html " for /a a href=" http://members.lycos.nl/mapplan/inadc.html " in /a condominiums and townhouse rentals in doral fl a href=" http://wolnaid.za.pl/ind51.html " in /a a href=" http://frilka.friko.pl/forbdf.html " for /a a href=" http://karrol.w8w.pl/in473.html " in /a treatment for shin splints a href=" http://noaccumo.strefa.pl/forf78.html " for /a a href=" http://ammar001.idoo.com/inf27.html " in /a a href=" http://winni.idoo.com/ind56.html " in /a managing stress
Nexunuri writed this comment the 20/11/2008 @ 10:51:56 hrs
http://infstuff.freehostia.com/autob55.html auto http://infstuff.freehostia.com/auto81a.html auto http://infstuff.freehostia.com/autoe8d.html auto http://infstuff.webng.com/auto10f.html auto http://infstuff.webng.com/autof95.html auto http://infstuff.webng.com/auto42d.html auto http://infstuff.t35.com/auto285.html auto http://infstuff.t35.com/autof7a.html auto http://infstuff.t35.com/auto048.html auto http://infstuff.50webs.com/auto2bd.html auto http://infstuff.50webs.com/auto2b7.html auto http://infstuff.50webs.com/autoc1d.html auto http://infstuff.psend.com/auto2a2.html auto http://infstuff.psend.com/auto3cb.html auto http://infstuff.psend.com/auto2e9.html auto http://infstuff.strefa.pl/autoaf2.html auto http://infstuff.strefa.pl/auto867.html auto http://infstuff.strefa.pl/autoe9e.html auto
Froautonds writed this comment the 23/10/2008 @ 19:47:47 hrs
daylilies their care http://mapplan.hostaim.com/in2e5.html standard pine coffee table http://larikopen.yoyohost.com/in654.html in http://larikopen.yoyohost.com/for160.html for how to make a flashlight http://ligosfa.t35.com/to376.html to http://kollega.friko.pl/in1b6.html in gene therapy for cystic fibrosis http://mapplan.my3gb.com/in726.html in http://kollega.friko.pl/inb74.html in mc kinney texas attractions http://mapplany.hostbot.com/for816.html for http://somsom.za.pl/for5d4.html for http://mapplan.seitenclique.net/fore6c.html for prestone a href=" http://mapplan.my3gb.com/ine46.html " in /a a href=" http://karrol.w8w.pl/in7aa.html " in /a a href=" http://lossawa.friko.pl/thee3b.html " the /a la push fishing report a href=" http://felixben.idoo.com/inf2e.html " in /a a href=" http://noner.w8w.pl/inec5.html " in /a a href=" http://mapplan.hostaim.com/ina74.html " in /a kevin haislip a href=" http://larikopen.yoyohost.com/in0ac.html " in /a a href=" http://felixben.idoo.com/fore09.html " for /a a href=" http://plikusin.za.pl/to11e.html " to /a used auto parts massachusetts a href=" http://voll.p2web.biz/in1a0.html " in /a a href=" http://mapplan.w8w.pl/in833.html " in /a a href=" http://mapplany.myd.net/forc44.html " for /a how to snapyour gum
Nexunuri writed this comment the 20/11/2008 @ 10:35:08 hrs
victor horta tassel house http://mapplan.t35.com/in2ce.html sell your idea for an invention http://mapplan.w8w.pl/for016.html for http://mapplanz.yoyohost.com/toa19.html to return to krondor cheats http://mapplany.yourfreehosting.net/for2b2.html for http://plikusin.za.pl/in28b.html in aluminum sheet 5005 http://frilka.friko.pl/in6e0.html in http://mapplany.yourfreehosting.net/inb96.html in toronto maple leafs http://matlan25.hostmo.com/for1a9.html for http://mapplan.seitenclique.net/in709.html in http://larikopen.yoyohost.com/ince3.html in 308l vs 309l stainless steel a href=" http://mapplan.fizwig.com/for6c1.html " for /a a href=" http://mapplany.myd.net/fore1f.html " for /a a href=" http://mapplan.hostaim.com/for420.html " for /a grain flow forged steel alloys a href=" http://karrol.w8w.pl/for9b0.html " for /a a href=" http://malox80.idoo.com/tocb6.html " to /a a href=" http://mapplan.friko.pl/ine3f.html " in /a blood pressure pulse only monitors a href=" http://frilka.friko.pl/for53c.html " for /a a href=" http://mapplanz.1stfreehosting.com/for2c6.html " for /a a href=" http://mapplan.friko.pl/fora65.html " for /a chanoine a href=" http://mapplany.hostbot.com/in7ff.html " in /a a href=" http://mapplan.w8w.pl/in2b3.html " in /a a href=" http://mapplan.hostevo.com/inab3.html " in /a photo galleries
Nexunuri writed this comment the 20/11/2008 @ 10:35:01 hrs
girl-collector http://mapplany.hostbot.com/incda.html swollen foreudder on goat http://noaccumo.strefa.pl/for04a.html for http://mapplanz.yoyohost.com/forbcd.html for mccainsville md on site rentals http://karrol.w8w.pl/ina0f.html in http://mapplany.yourfreehosting.net/for831.html for great composers of filipino folk songs http://kollega.friko.pl/to897.html to http://mapplan.freehostia.com/inb02.html in getting rid of chipmunks in garage http://mitglied.lycos.de/mapplan/forda1.html for http://noner.w8w.pl/inf21.html in http://mapplany.yourfreehosting.net/for2b2.html for 1930 ford panel delivery a href=" http://felixben.idoo.com/in715.html " in /a a href=" http://malox80.idoo.com/forf40.html " for /a a href=" http://ligosfa.t35.com/in726.html " in /a lyrics to hi five a href=" http://larikopen.yoyohost.com/to319.html " to /a a href=" http://somsom.za.pl/inb84.html " in /a a href=" http://mapplany.001webs.com/ind9c.html " in /a bieber bus to atlantic city a href=" http://mapplany.host-itnow.com/inb71.html " in /a a href=" http://mapplan.hostaim.com/for13d.html " for /a a href=" http://mapplany.001webs.com/in694.html " in /a alpine express a href=" http://mapplan.w8w.pl/in6c4.html " in /a a href=" http://wolnaid.za.pl/for1f2.html " for /a a href=" http://mapplany.myd.net/in238.html " in /a criminal attorney job
Nexunuri writed this comment the 20/11/2008 @ 10:27:13 hrs
trans atlantic motors inc http://mapplan.t35.com/inc6c.html platoy magazine http://mapplan.t35.com/in765.html in http://mapplany.omgfreehost.com/forf19.html for accomodation to rent in southport http://noaccumo.strefa.pl/for876.html for http://ammar001.idoo.com/in93d.html in bulky to lean muscles http://mapplany.001webs.com/forfaa.html for http://malox80.idoo.com/inf00.html in blackhorse at clifton http://mapplan.hostaim.com/for81f.html for http://karrol.w8w.pl/for8f0.html for http://mapplan.za.pl/in980.html in amato tire store a href=" http://mapplan.hostaim.com/in9ee.html " in /a a href=" http://mapplany.host-itnow.com/for563.html " for /a a href=" http://matlan25.hostmo.com/in3a4.html " in /a we do it all auto svc ar a href=" http://mapplany.hostbot.com/for292.html " for /a a href=" http://mapplan.t35.com/in487.html " in /a a href=" http://felixben.idoo.com/in715.html " in /a torts and sports injury a href=" http://mapplan.my3gb.com/forae8.html " for /a a href=" http://somsom.za.pl/to7c8.html " to /a a href=" http://likas.idoo.com/forccf.html " for /a paper stock types a href=" http://mapplany.001webs.com/for0cc.html " for /a a href=" http://mapplanz.yoyohost.com/toa19.html " to /a a href=" http://googi.idoo.com/fore3c.html " for /a 801-390-7283 layton
Nexunuri writed this comment the 20/11/2008 @ 10:26:32 hrs
custom plush toy manufacture http://mapplan.fizwig.com/for1ae.html how to be a emo kid http://mapplany.9ix.net/forf87.html for http://ammar001.idoo.com/in09f.html in floating pool fountains http://malox80.idoo.com/for761.html for http://members.lycos.nl/mapplan/in67c.html in dwarf hamster chew toys http://noner.w8w.pl/in9b6.html in http://mapplan.hostaim.com/in640.html in there were rumors he was into field hockey players http://mapplan.seitenclique.net/tobb6.html to http://mapplan.hostaim.com/in2e5.html in http://wolnaid.za.pl/for4ee.html for air filter element type pc55 for carburetor a href=" http://mapplany.9ix.net/in086.html " in /a a href=" http://mapplany.myd.net/inbcc.html " in /a a href=" http://voll.p2web.biz/in2d4.html " in /a mph wind information temporarily google gmail gadg a href=" http://mapplany.hostbot.com/for797.html " for /a a href=" http://felixben.idoo.com/in1aa.html " in /a a href=" http://mapplan.strefa.pl/ford7a.html " for /a doctor tushy a href=" http://mapplan.seitenclique.net/in1c5.html " in /a a href=" http://mapplan.t35.com/in42f.html " in /a a href=" http://frilka.friko.pl/forc47.html " for /a eton radio a href=" http://koebola.w8w.pl/inec5.html " in /a a href=" http://mapplany.9ix.net/in909.html " in /a a href=" http://kollega.friko.pl/for071.html " for /a online journal
Nexunuri writed this comment the 20/11/2008 @ 10:22:08 hrs
http://infostuff.omgfreehost.com/auto2a7.html auto http://infostuff.omgfreehost.com/autocf4.html auto http://infostuff.omgfreehost.com/auto874.html auto http://infosstuff.freewebhosting360.com/auto824.html auto http://infosstuff.freewebhosting360.com/autoe69.html auto http://infosstuff.freewebhosting360.com/autoebb.html auto http://infosstuff.rack111.com/auto463.html auto http://infosstuff.rack111.com/auto75d.html auto http://infosstuff.rack111.com/auto65c.html auto http://infstuff.w8w.pl/autoa58.html auto http://infstuff.w8w.pl/autoda5.html auto http://infstuff.w8w.pl/auto659.html auto http://infstuff.za.pl/auto1e0.html auto http://infstuff.za.pl/auto1da.html auto http://infstuff.za.pl/auto437.html auto http://infstuff.friko.pl/autoa0b.html auto http://infstuff.friko.pl/autoce9.html auto http://infstuff.friko.pl/auto681.html auto
Caautoa writed this comment the 23/10/2008 @ 19:47:47 hrs
General editor: Francisco Márquez [ ZSeven ] | E-mail | AIM | Contact form
Language(s):
Subscribe:



Home :: Profile :: Curriculum :: Links :: Contact

Copyright © 2004-2008 Akapon Networks