Homepage » PHP & MySQL » Scripts » Fotoalbum
| Info | ||||
| Door: | Peck | Moeilijkheidsgraad: | ![]() | |
| Geplaatst op: | 27-02-2007 | Reacties: | 33(Bekijken) | |
| Views: | 29644 | Log in om zelf te reageren | ||
| Laatste keer aangepast op 17-05-2008 door Peck | Waardering: | |||
Uitleg
Dit is een fotoalbum dat ik gisteren en eergisteren ineen gestoken heb. Het is redelijk eenvoudig.
Alles wat je moet veranderen om het goed te kunnen laten werken staat in het script vermeld helemaal bovenaan.
In het css-file kan je de achtergrond en nog enkele andere opmaak elementen wijzigen.
// EDIT
Er waren blijkbaar heel wat gevallen waarbij het script niet werkte, daarom heb ik het grotendeels herschreven, en daar ik nu moderator ben, heb ik het eindelijk kunnen veranderen. :)
Script
//===========foto.css
BODY {
background-color: #d3d3d3;
font-family: Tahoma
}
a:visited {
color: black;
text-decoration: none;
}
a:link {
color: black;
text-decoration: none;
}
a:hover {
color: gray;
text-decoration: underline;
}
a:active {
color: black;
text-decoration: underline;
}
.image {
border: 1px solid black;
cursor: pointer;
}
.image:hover {
border: 1px solid white;
cursor: pointer;
}
.this_image {
border: 3px outset black;
cursor: default;
}
div#mainlayer {
margin: 0 auto;
text-align: center;
font-size: 14px;
}
.hidden {
visibility: hidden;
font-size: 14px;
margin: 2px;
}
.image2 {
border: 1px solid black;
}
.image2:hover {
border: 1px solid white;
}
.overzicht {
margin-left: 5px;
font-size: 13px;
}
h2.title {
text-align: center;
margin: 5px;
}
//============ foto.php
<?php
/**
*
* Script gemaakt door Jens Peeters
*
*/
// Deze variabelen moet je naar eigen wensen veranderen
$dirname = "fotos/"; // map waarin de afbeeldingen staan
$dir_thumbs = "fotos/thumbs/"; // map waarin de thumbnails zitten
$afbeeldingenperrij = "4"; // aantal afbeeldingen per rij
$aantalrijen = "4"; // aantal rijen per pagina
$breedte_thumbnail = "100"; // breedte van de thumbnails
$hoogte_thumbnail = "100"; // hoogte van de thumbnails
$showtitle = "yes"; // wil je bovenaan een titel weergeven? ("yes" of "no")
$albumnaam = "Fotoalbum"; // titel die bovenaan weergegeven wordt
// de huidige locatie op de server vaststellen
$php_self = explode("/",$_SERVER['PHP_SELF']);
if (is_array($php_self))
{
$php_self = urlencode($php_self[count($php_self)-1]);
}
else
{
$php_self = urlencode($php_self);
}
// toegelaten extensies
$ext = "jpg gif png bmp wbmp pjpeg jpeg";
if (!@opendir($dirname) || !@opendir($dir_thumbs))
{
echo "Kan de map met foto's of de map met thumbnails niet openen";
exit;
}
$time_start = microtime(true);
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Fotoalbum</title>
<link rel="stylesheet" type="text/css" href="foto.css">
<script language="javascript" type="text/javascript">
function check_images() {
for(i=0;i<document.images.length;i++) {
var maxWidth = 800;
if(document.images[i].width > maxWidth){
var origWidth = document.images[i].width;
var origHeight = document.images[i].height;
document.images[i].width = maxWidth;
document.images[i].height = origHeight/(origWidth/maxWidth);
}
}
}
setInterval(check_images,1000);
</script>
</head>
<body>
<?php
/*
Functie om te controleren of de opgegeven pagina wel bestaat.
*/
function pageExists($pagenr)
{
global $aantalpaginas;
if ($pagenr <= $aantalpaginas && $pagenr > 0)
{
return true;
}
else
{
return false;
}
}
/*
Functie die het aantal fotobestanden in een map telt.
*/
function countPhotos($dirname)
{
global $ext;
$ext2 = $ext;
$open = @opendir($dirname);
$aantalfotos = 0;
$ext2 = explode(" ",$ext2);
while (false !== ($file = @readdir($open)))
{
$pathinfo = pathinfo($file);
if (in_array(strtolower($pathinfo["extension"]), $ext2))
{
$aantalfotos++;
}
}
@closedir($open);
return $aantalfotos;
}
function generateArrDir($dir)
{
global $ext;
$ext2 = $ext;
$handle = @opendir($dir);
$files = array();
$ext2 = explode(" ",$ext2);
if ($handle)
{
while (false !== ($file = @readdir($handle)))
{
$ext = explode(".",$file);
$ext = $ext[count($ext)-1];
if (in_array(strtolower($ext),$ext2))
{
$files[] = $file;
}
}
@closedir($handle);
return $files;
}
else
{
return false;
}
}
/*
Functie die thumbnails (=kleine foto's) maakt en ze dan in de thumbnailmap opslaat
*/
function thumbnail($map,$thumblocatie,$bestandsnaam,$breedte,$hoogte)
{
$breedte2 = $breedte;
$hoogte2 = $hoogte;
list($breedte_origineel, $hoogte_origineel, $type) = getimagesize($map.$bestandsnaam);
if (($breedte_origineel < $hoogte_origineel) && ($breedte > $hoogte))
{
$breedte = ($hoogte / $hoogte_origineel) * $breedte_origineel;
}
else
{
$hoogte = ($breedte / $breedte_origineel) * $hoogte_origineel;
}
$afbeelding = imagecreatetruecolor($breedte, $hoogte);
// eerst controleren of de foto wel verkleind moet worden
if ($breedte_origineel > $breedte2 || $hoogte_origineel > $hoogte2)
{
switch ($type)
{
case 1:
//gif
$afbeelding_origineel = imagecreatefromgif($map.$bestandsnaam);
imagecopyresampled($afbeelding, $afbeelding_origineel, 0, 0, 0, 0, $breedte, $hoogte, $breedte_origineel, $hoogte_origineel);
imagegif($afbeelding, $thumblocatie.$bestandsnaam);
break;
case 2:
//jpg
$afbeelding_origineel = imagecreatefromjpeg($map.$bestandsnaam);
imagecopyresampled($afbeelding, $afbeelding_origineel, 0, 0, 0, 0, $breedte, $hoogte, $breedte_origineel, $hoogte_origineel);
imagejpeg($afbeelding, $thumblocatie.$bestandsnaam,80);
break;
case 3:
//png
$afbeelding_origineel = imagecreatefrompng($map.$bestandsnaam);
imagecopyresampled($afbeelding, $afbeelding_origineel, 0, 0, 0, 0, $breedte, $hoogte, $breedte_origineel, $hoogte_origineel);
imagepng($afbeelding, $thumblocatie.$bestandsnaam);
break;
}
}
// anders kopiëren we de foto gewoon naar de thumbsmap
else
{
@copy($map.$bestandsnaam,$thumblocatie.$bestandsnaam);
}
return true;
}
/*-----------------------------------------------------
Hieronder dient niets meer veranderd te worden
-------------------------------------------------------*/
$fotosperpagina = $afbeeldingenperrij * $aantalrijen;
$aantalfotos = countPhotos($dirname);
$aantalpaginas = ceil($aantalfotos / $fotosperpagina);
// fotomap openen
$open = @opendir($dirname);
// als er geen actie is opgegeven
if (empty($_GET['action']))
{
$photos = generateArrDir($dirname);
$page = $_GET['page'];
// opgegeven paginanummer controleren
if (!is_numeric($page) || !pageExists($page))
{
$page = "1";
}
else
{
$page = $page;
}
$photos = array_chunk($photos,$fotosperpagina,true);
$photos = $photos[$page-1];
$vorige = $page-1;
$volgende = $page+1;
echo "<table style=\"width: 100%;\">";
// titel bovenaan weergeven indien zo ingesteld
if ($showtitle == "yes")
{
echo "<tr>";
echo "<td colspan=\"2\">";
echo "<h2 class=\"title\">" . $albumnaam . "</h2>\n";
echo "</td>";
echo "</tr>";
}
echo "<tr>";
if (is_array($photos))
{
echo "<td style=\"width: 170px; vertical-align: top;\">";
echo "<div class=\"overzicht\">";
// enkele statistieke meegeven
echo "Totaal aantal foto's: ".$aantalfotos;
echo "\n<br>\n";
echo "Aantal pagina's: ".$aantalpaginas;
echo "\n<br>\n";
echo "Aantal foto's per pagina: ".$fotosperpagina;
echo "\n<br>\n";
echo "Ga naar pagina: \n<br>\n<br>\n";
echo "<form method=\"get\" action=\"" . $php_self . "\">\n";
echo "<select name=\"page\" onchange=\"this.form.submit()\" style=\"width: 70px;\">\n";
for ($k = 1; $k <= $aantalpaginas; $k++)
{
if ($k == $page)
{
echo "<option value=\"" . $k . "\" selected=\"selected\">" . $k . "</option>\n";
}
else
{
echo "<option value=\"" . $k . "\">" . $k . "</option>\n";
}
}
echo "</select>\n";
echo "</form>\n";
echo "</div>";
echo "</td>";
echo "<td style=\"vertical-align: top;\">";
echo "<div id=\"mainlayer\">\n";
// kijken of er een "vorige" knop nodig is
if (pageExists($vorige))
{
echo "<a href=\"" . $php_self . "?page=".$vorige."\"><< Vorige</a>\n";
}
else
{
echo "<span class=\"hidden\">Vorige >></span>";
}
echo " \n";
// kijken of er een "volgende" knop nodig is
if (pageExists($volgende))
{
echo "<a href=\"" . $php_self . "?page=".$volgende."\">Volgende>> </a>\n";
}
else
{
echo "<span class=\"hidden\">Volgende >></span>";
}
echo "<br>\n<br>\n";
$inrij = 0;
foreach ($photos as $id => $photo)
{
if (!file_exists($dir_thumbs . $photo))
{
// ... dan maken we die aan
thumbnail($dirname,$dir_thumbs,$photo,$breedte_thumbnail,$hoogte_thumbnail);
}
echo "<img src=\"" . $dir_thumbs . $photo . "\" alt=\"" . $photo . "\" onclick=\"location.href='" . $php_self . "?action=photo&id=".$id."'\" class=\"image\">\n";
$inrij++;
// als de foto de laatste van de rij is, breken we de rij af om terug aan de kant te beginnen
if ($inrij == $afbeeldingenperrij)
{
echo "<br>\n";
// $inrij op 0 zetten
$inrij = "0";
}
}
echo "</div>\n";
}
else
{
echo "<td>Geen foto's aanwezig";
}
echo "<td>";
echo "</tr>";
echo "<tr>";
echo "</table>";
}
// als er op een foto geklikt wordt willen we dat deze foto in het groot wordt weergegeven
elseif ($_GET['action'] == "photo" && isset($_GET['id']) && is_numeric($_GET['id']))
{
$volgende = $_GET['id']+1;
$vorige = $_GET['id']-1;
$photoid = $_GET['id'];
$page1 = $_GET['id'] + 1;
$page = $page1 / $fotosperpagina;
$page = ceil($page);
$photos = generateArrDir($dirname);
echo "<div id=\"mainlayer\">\n";
// begin navigatie bovenaan...
if (file_exists($dir_thumbs . $photos[$photoid-1]) && in_array($photos[$photoid-1],$photos))
{
echo "<a href=\"" . $php_self . "?action=photo&id=".$vorige."\"><< Vorige</a>\n";
}
else
{
echo "<span class=\"hidden\">Vorige >></span>";
}
echo " \n";
if (file_exists($dir_thumbs . $photos[$photoid+1]) && in_array($photos[$photoid+1],$photos))
{
echo "<a href=\"" . $php_self . "?action=photo&id=".$volgende."\">Volgende >></a>\n";
}
else
{
echo "<span class=\"hidden\">Volgende >></span>";
}
echo "<br>\n";
echo "<br>\n";
// ... einde navigatie bovenaan
//begin foto...
if (file_exists($dir_thumbs . $photos[$volgende]) && in_array($photos[$volgende],$photos))
{
echo "<img src=\"" . $dirname . $photos[$photoid] . "\" alt=\"" . $photos[$photoid] . "\" onclick=\"location.href='" . $php_self . "?action=photo&id=" . $volgende . "'\" class=\"image\">\n";
}
else
{
echo "<img src=\"" . $dirname . $photos[$photoid] . "\" alt=\"" . $photos[$photoid] . "\" class=\"image2\">\n";
}
echo "<br>\n";
echo "<br>\n";
// ... einde foto
// begin thumbnailsbalk....
if (file_exists($dir_thumbs . $photos[$photoid-2]) && in_array($photos[$photoid-2],$photos))
{
$location = $photoid - 2;
echo "<img src=\"" . $dir_thumbs . $photos[$photoid-2] . "\" class=\"image\" alt=\"" . $photos[$photoid-2] . "\" onclick=\"location.href='" . $php_self . "?action=photo&id=" . $location . "'\">\n";
}
else
{
echo " \n";
}
if (file_exists($dir_thumbs . $photos[$photoid-1]) && in_array($photos[$photoid-1],$photos))
{
$location = $photoid - 1;
echo "<img src=\"" . $dir_thumbs . $photos[$photoid-1] . "\" class=\"image\" alt=\"" . $photos[$photoid-1] . "\" onclick=\"location.href='" . $php_self . "?action=photo&id=" . $location . "'\">\n";
}
else
{
echo " \n";
}
if (file_exists($dir_thumbs . $photos[$photoid]) && in_array($photos[$photoid],$photos))
{
echo "<img src=\"" . $dir_thumbs . $photos[$photoid] . "\" class=\"this_image\" alt=\"" . $photos[$photoid] . "\">\n";
}
else
{
echo " \n";
}
if (file_exists($dir_thumbs . $photos[$photoid+1]) && in_array($photos[$photoid+1],$photos))
{
$location = $photoid + 1;
echo "<img src=\"" . $dir_thumbs . $photos[$photoid+1] . "\" class=\"image\" alt=\"" . $photos[$photoid+1] . "\" onclick=\"location.href='" . $php_self . "?action=photo&id=" . $location . "'\">\n";
}
else
{
echo " \n";
}
if (file_exists($dir_thumbs . $photos[$photoid+2]) && in_array($photos[$photoid+2],$photos))
{
$location = $photoid + 2;
echo "<img src=\"" . $dir_thumbs . $photos[$photoid+2] . "\" class=\"image\" alt=\"" . $photos[$photoid+2] . "\" onclick=\"location.href='" . $php_self . "?action=photo&id=" . $location . "'\">\n";
}
else
{
echo " \n";
}
echo "<br>";
echo "<br>";
// ... einde thumbnailsbalk
// begin navigatie onderaan...
if (file_exists($dir_thumbs . $photos[$photoid-1]) && in_array($photos[$photoid-1],$photos))
{
echo "<a href=\"" . $php_self . "?action=photo&id=".$vorige."\"><< Vorige</a>\n";
}
else
{
echo "<span class=\"hidden\">Vorige >></span>";
}
echo " \n";
if (file_exists($dir_thumbs . $photos[$photoid+1]) && in_array($photos[$photoid+1],$photos))
{
echo "<a href=\"" . $php_self . "?action=photo&id=".$volgende."\">Volgende >></a>\n";
}
else
{
echo "<span class=\"hidden\">Volgende >></span>";
}
echo "<br>\n";
echo "<br>\n";
echo "<a href=\"" . $php_self . "?page=".$page."\">Overzicht</a>\n";
echo "<br>\n";
echo "<br>\n";
echo "[ <a href=\"" . $dirname . $photos[$photoid] . "\">Origineel</a> ]";
// ... einde navigatie onderaan
echo "</div>\n";
}
?>
</body>
</html>
<?php
$time_end = microtime(true);
$time = $time_end - $time_start;
//echo "<br />Pagina generatie in $time seconden.\n";
?>
| 33 reacties | |
| maynardbarton | |
![]() Regular |
<ul><li><strong><a href="http://www.loveyoutiffany.com/">tiffany and co outlet</a></strong> </li><li><strong><a href="http://www.loveyoutiffany.com/">tiffany outlet</a></strong> </li><li><strong><a href="http://www.loveyoutiffany.com/">tiffany jewelry outlet</a></strong> </li><li><strong><a href="http://www.loveyoutiffany.com/">tiffany and co outlet</a></strong> </li><li><strong><a href="http://www.loveyoutiffany.com/">tiffany outlet online</a></strong> </li></ul><br> <ul><li><strong><a href="http://www.loveyoutiffany.com/">tiffany and co outlet</a></strong> </li><li><strong><a href="http://www.loveyoutiffany.com/">tiffany outlet</a></strong> </li><li><strong><a href="http://www.loveyoutiffany.com/">tiffany jewelry outlet</a></strong> </li><li><strong><a href="http://www.loveyoutiffany.com/">tiffany and co outlet</a></strong> </li><li><strong><a href="http://www.loveyoutiffany.com/">tiffany outlet online</a></strong> </li></ul><br> <strong><a href="http://www.loveyoutiffany.com/">tiffany outlet locations</a></strong> <br> <strong><a href="http://www.loveyoutiffany.com/">cheap tiffany & co</a></strong> <br> <strong><a href="http://www.loveyoutiffany.com/">cheap tiffany & co jewelry</a></strong> <br> <strong><a href="http://www.loveyoutiffany.com/">tiffany jewelry</a></strong> <br> <strong><a href="http://www.loveyoutiffany.com/">tiffany & co</a></strong> <br> |
| maynardbarton | |
![]() Regular |
<ul><li><strong><a href="http://www.topoutletugg.com/">ugg boots</a></strong> </li><li><strong><a href="http://www.topoutletugg.com/">ugg boots</a></strong> </li><li><strong><a href="http://www.topoutletugg.com/">uggs outlet</a></strong> </li><li><strong><a href="http://www.topoutletugg.com/">uggs outlet store</a></strong> </li><li><strong><a href="http://www.topoutletugg.com/">uggs outlet online</a></strong> </li></ul><br> <ul><li><strong><a href="http://www.topoutletugg.com/">ugg boots</a></strong> </li><li><strong><a href="http://www.topoutletugg.com/">ugg boots</a></strong> </li><li><strong><a href="http://www.topoutletugg.com/">uggs outlet</a></strong> </li><li><strong><a href="http://www.topoutletugg.com/">uggs outlet store</a></strong> </li><li><strong><a href="http://www.topoutletugg.com/">uggs outlet online</a></strong> </li></ul><br> <strong><a href="http://www.topoutletugg.com/">uggs for cheap</a></strong> <br> <strong><a href="http://www.topoutletugg.com/">uggs clearance</a></strong> <br> <strong><a href="http://www.topoutletugg.com/">ugg boots uggs outlet store</a></strong> <br> <strong><a href="http://www.topoutletugg.com/">uggs boots on sale</a></strong> <br> <strong><a href="http://www.topoutletugg.com/">discount uggs</a></strong> <br> |
| brishen10 | |
![]() Regular |
<ul><li><strong><a href="http://www.fakeomegawatchsale.com">Omega replica</a></strong> </li><li><strong><a href="http://www.fakeomegawatchsale.com">replica watches</a></strong> </li><li><strong><a href="http://www.fakeomegawatchsale.com">Omega replica</a></strong> </li><li><strong><a href="http://www.fakeomegawatchsale.com">Seamaster Planet Ocean</a></strong> </li><li><strong><a href="http://www.fakeomegawatchsale.com">Speedmaster</a></strong> </li></ul><br> <ul><li><strong><a href="http://www.fakeomegawatchsale.com">Omega replica</a></strong> </li><li><strong><a href="http://www.fakeomegawatchsale.com">replica watches</a></strong> </li><li><strong><a href="http://www.fakeomegawatchsale.com">Omega replica</a></strong> </li><li><strong><a href="http://www.fakeomegawatchsale.com">Seamaster Planet Ocean</a></strong> </li><li><strong><a href="http://www.fakeomegawatchsale.com">Speedmaster</a></strong> </li></ul><br> <strong><a href="http://www.fakeomegawatchsale.com">James Bond</a></strong> <br> <strong><a href="http://www.fakeomegawatchsale.com">Constellation</a></strong> <br> <strong><a href="http://www.fakeomegawatchsale.com/omega-gents-collection-c-8.html">replica omega</a></strong> <br> <strong><a href="http://www.fakeomegawatchsale.com/omega-gents-collection-c-8.html">watch</a></strong> <br> <strong><a href="http://www.fakeomegawatchsale.com/omega-gents-collection-c-8.html">watches for men</a></strong> <br> |
| brishen10 | |
![]() Regular |
<ul><li><strong><a href="http://www.patekwatchesstore.com">patek phillipe</a></strong></li><li><strong><a href="http://www.patekwatchesstore.com">watches</a></strong></li><li><strong><a href="http://www.patekwatchesstore.com">patek</a></strong></li><li><strong><a href="http://www.patekwatchesstore.com">patek phillipe</a></strong></li><li><strong><a href="http://www.patekwatchesstore.com">patek philippe watches</a></strong></li></ul><br> <title>Patek Philippe 5153G-001 - White Gold - Men Calatrava - $250.00 : replica Patek Philippe watches, patekwatchesstore.com</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta name="keywords" content="Patek Philippe 5153G-001 - White Gold - Men Calatrava Replica Patek Men's Watches Replica Patek Ladies' Watches Replica Patek Pocket Watches Professional Patek Philippe" /> <meta name="description" content="replica Patek Philippe watches Patek Philippe 5153G-001 - White Gold - Men Calatrava - " /> <meta http-equiv="imagetoolbar" content="no" /> <meta name="author" content="Zen Cart China" /> <meta name="generator" content="Zen Cart, http://www.zen-cart.cn" /> <link rel="canonical" href="http://www.patekwatchesstore.com/patek-philippe-5153g001-white-gold-men-calatrava-p-37.html" /> <link rel="stylesheet" type="text/css" href="http://www.patekwatchesstore.com/includes/templates/dresses/css/style_imagehover.css" /> <link rel="stylesheet" type="text/css" href="http://www.patekwatchesstore.com/includes/templates/dresses/css/stylesheet.css" /> <link rel="stylesheet" type="text/css" href="http://www.patekwatchesstore.com/includes/templates/dresses/css/stylesheet_css_buttons.css" /> <link rel="stylesheet" type="text/css" media="print" href="http://www.patekwatchesstore.com/includes/templates/dresses/css/print_stylesheet.css" /> <link type="text/css" href="http://www.patekwatchesstore.com/includes/templates/dresses/css/magiczoomplus.css" rel="stylesheet" media="screen" /> <div style="margin:0 auto;clear:both;"> <div id="lang_main_page" style="padding-top:10px;clear:both;margin-left:auto;margin-right:auto;text-align:center;"> <b>language:</b> <a href="http://www.patekwatchesstore.com/de/"> <img src="http://www.patekwatchesstore.com/langimg/gericon.gif" alt="Deutsch" title=" Deutsch " height="15" width="24"></a> <a href="http://www.patekwatchesstore.com/fr/"> <img src="http://www.patekwatchesstore.com/langimg/fricon.gif" alt="Français" title=" Français " height="15" width="24"></a> <a href="http://www.patekwatchesstore.com/it/"> <img src="http://www.patekwatchesstore.com/langimg/iticon.gif" alt="italiano" title=" italiano " height="15" width="24"></a> <a href="http://www.patekwatchesstore.com/es/"> <img src="http://www.patekwatchesstore.com/langimg/esicon.gif" alt="Español" title=" Español " height="15" width="24"></a> <a href="http://www.patekwatchesstore.com/pt/"> <img src="http://www.patekwatchesstore.com/langimg/pticon.gif" alt="Português" title=" Português " height="15" width="24"></a> <a href="http://www.patekwatchesstore.com/jp/"> <img src="http://www.patekwatchesstore.com/langimg/jpicon.gif" alt="日本語" title=" 日本語 " height="14" width="24"></a> <a href="http://www.patekwatchesstore.com/ru/"> <img src="http://www.patekwatchesstore.com/langimg/ruicon.gif" alt="russian" title=" russian " height="15" width="24"></a> <a href="http://www.patekwatchesstore.com/ar/"> <img src="http://www.patekwatchesstore.com/langimg/aricon.gif" alt="arabic" title=" arabic " height="15" width="24"></a> <a href="http://www.patekwatchesstore.com/no/"> <img src="http://www.patekwatchesstore.com/langimg/noicon.gif" alt="norwegian" title=" norwegian " height="15" width="24"></a> <a href="http://www.patekwatchesstore.com/sv/"> <img src="http://www.patekwatchesstore.com/langimg/svicon.gif" alt="swedish" title=" swedish " height="15" width="24"></a> <a href="http://www.patekwatchesstore.com/da/"> <img src="http://www.patekwatchesstore.com/langimg/daicon.gif" alt="danish" title=" danish " height="15" width="24"></a> <a href="http://www.patekwatchesstore.com/nl/"> <img src="http://www.patekwatchesstore.com/langimg/nlicon.gif" alt="Nederlands" title=" Nederlands" height="15" width="24"></a> <a href="http://www.patekwatchesstore.com/fi/"> <img src="http://www.patekwatchesstore.com/langimg/fiicon.gif" alt="finland" title=" finland " height="15" width="24"></a> <a href="http://www.patekwatchesstore.com/ie/"> <img src="http://www.patekwatchesstore.com/langimg/gaicon.gif" alt="ireland" title=" ireland " height="15" width="24"></a> <a href="http://www.patekwatchesstore.com/"> <img src="http://www.patekwatchesstore.com/langimg/icon.gif" alt="English" title=" English " height="15" width="24"></a> </div> </div> <div id="header_wrapper"> <div id="header_warpper"> <div id="header_inner"> <p id="logo"><a href="http://www.patekwatchesstore.com/"><img src="http://www.patekwatchesstore.com/includes/templates/dresses/images/logo.gif" alt="Powered by Zen Cart :: The Art of E-Commerce" title=" Powered by Zen Cart :: The Art of E-Commerce " width="215" height="80" /></a></p> <p class="header_contact"> <a href="http://www.patekwatchesstore.com/index.php?main_page=Payment_Methods">Wholesale</a> <a href="http://www.patekwatchesstore.com/index.php?main_page=shippinginfo">Shipping Info</a> <a href="http://www.patekwatchesstore.com/index.php?main_page=Payment_Methods">Payment Methods</a> <a href="http://www.patekwatchesstore.com/index.php?main_page=contact_us">Contact Us</a> </p> <div class="header_call"> Welcome GUEST, PLEASE <a href="http://www.patekwatchesstore.com/index.php?main_page=login">Sign In</a> or <a href="http://www.patekwatchesstore.com/index.php?main_page=create_account">Register</a> </div> <div id="divCart"> <span><div id="cartBoxEmpty"><a href="http://www.patekwatchesstore.com/index.php?main_page=shopping_cart">Shopping Bag:</a>  (Your cart is empty)</div> </span> </div> <div id="header_search"> <form name="quick_find_header" action="http://www.patekwatchesstore.com/index.php?main_page=advanced_search_result" method="get"><input type="hidden" name="main_page" value="advanced_search_result" /><input type="hidden" name="search_in_description" value="1" /><div class="search-header-input"><input type="text" name="keyword" size="36" maxlength="130" value="Search..." onfocus="if (this.value == 'Search...') this.value = '';" onblur="if (this.value == '') this.value = 'Search...';" /></div><input class="button-search-header" type="image" src="http://www.patekwatchesstore.com/includes/templates/dresses/images/111.png" value="Serch" /></form> </div> </div> </div> <div class="clear"></div> <div id="header_menu"> <ul id="lists"> <li class="home-link"><a href="http://www.patekwatchesstore.com/"><strong>Home</strong></a></li> <li id=""><a href="http://www.patekwatchesstore.com/ladies-watches-c-6.html"><strong>Replica Patek Ladies' Watches</strong></a></li> <li id=""><a href="http://www.patekwatchesstore.com/mens-watches-c-1.html"><strong>Replica Patek Men's Watches</strong></a></li> <li id=""><a href="http://www.patekwatchesstore.com/pocket-watches-c-17.html"><strong>Replica Patek Pocket Watches</strong></a></li> </ul> </div> </div> <div class="clear"></div> <div id="mainWrapper"> <table width="100%" border="0" cellspacing="0" cellpadding="0" id="contentMainWrapper"> <tr> <td id="navColumnOne" class="columnLeft" style="width: "> <div id="navColumnOneWrapper" style="width: 220px"> <div class="leftBoxContainer" id="currencies" style="width: 220px"> <div class="sidebox-header-left "><h3 class="leftBoxHeading " id="currenciesHeading"><label>Currencies</label></h3></div> <div id="currenciesContent" class="sideBoxContent centeredContent"><form name="currencies_form" action="http://www.patekwatchesstore.com/" method="get"><select name="currency" onchange="this.form.submit();"> <option value="USD" selected="selected">US Dollar</option> <option value="CNY">CNY</option> <option value="EUR">Euro</option> <option value="GBP">GB Pound</option> <option value="CAD">Canadian Dollar</option> <option value="AUD">Australian Dollar</option> <option value="JPY">Jappen Yen</option> <option value="NOK">Norske Krone</option> <option value="SEK">Swedish Krone</option> <option value="DKK">Danish Krone</option> <option value="RUB">Russian Ruble</option> </select> <input type="hidden" name="main_page" value="product_info" /><input type="hidden" name="products_id" value="37" /></form></div></div> <div class="leftBoxContainer" id="categories" style="width: 220px"> <div class="sidebox-header-left main-sidebox-header-left"><h3 class="leftBoxHeading main-sidebox-header-right" id="categoriesHeading">Categories</h3></div> <div id="categoriesContent" class="sideBoxContent"> <div class="categories-top-list no-dots"><a class="category-top" href="http://www.patekwatchesstore.com/replica-patek-ladies-watches-c-6.html">Replica Patek Ladies' Watches</a></div> <div class="categories-top-list "><a class="category-top" href="http://www.patekwatchesstore.com/replica-patek-mens-watches-c-1.html"><span class="category-subs-parent">Replica Patek Men's Watches</span></a></div> <div class="subcategory"><a class="category-products" href="http://www.patekwatchesstore.com/replica-patek-mens-watches-replica-patek-aquanaut-c-1_12.html">Replica Patek Aquanaut</a></div> <div class="subcategory"><a class="category-products" href="http://www.patekwatchesstore.com/replica-patek-mens-watches-replica-patek-calatrava-c-1_2.html"><span class="category-subs-selected">Replica Patek Calatrava</span></a></div> <div class="subcategory"><a class="category-products" href="http://www.patekwatchesstore.com/replica-patek-mens-watches-replica-patek-complications-c-1_4.html">Replica Patek Complications</a></div> <div class="subcategory"><a class="category-products" href="http://www.patekwatchesstore.com/replica-patek-mens-watches-replica-patek-golden-ellipse-c-1_10.html">Replica Patek Golden Ellipse</a></div> <div class="subcategory"><a class="category-products" href="http://www.patekwatchesstore.com/replica-patek-mens-watches-replica-patek-gondolo-c-1_11.html">Replica Patek Gondolo</a></div> <div class="subcategory"><a class="category-products" href="http://www.patekwatchesstore.com/replica-patek-mens-watches-replica-patek-grand-complications-c-1_5.html">Replica Patek Grand Complications</a></div> <div class="subcategory"><a class="category-products" href="http://www.patekwatchesstore.com/replica-patek-mens-watches-replica-patek-nautilus-c-1_3.html">Replica Patek Nautilus</a></div> <div class="categories-top-list "><a class="category-top" href="http://www.patekwatchesstore.com/replica-patek-pocket-watches-c-17.html">Replica Patek Pocket Watches</a></div> </div></div> <div class="leftBoxContainer" id="featured" style="width: 220px"> <div class="sidebox-header-left "><h3 class="leftBoxHeading " id="featuredHeading">Featured - <a href="http://www.patekwatchesstore.com/featured_products.html">more</a></h3></div> <div class="sideBoxContent centeredContent"><a href="http://www.patekwatchesstore.com/patek-philippe-490950g001-white-gold-ladies-twenty4%C2%AE-p-73.html"><img src="http://www.patekwatchesstore.com/images//patek_/Ladies-Watches/Twenty-4®/4909-50G-001-White-Gold-Ladies-Twenty-4®-.png" alt="Patek Philippe 4909/50G-001 - White Gold - Ladies Twenty~4®" title=" Patek Philippe 4909/50G-001 - White Gold - Ladies Twenty~4® " width="130" height="114" /></a><a class="sidebox-products" href="http://www.patekwatchesstore.com/patek-philippe-490950g001-white-gold-ladies-twenty4%C2%AE-p-73.html">Patek Philippe 4909/50G-001 - White Gold - Ladies Twenty~4® </a><div><span class="normalprice">$400.00 </span> <span class="productSpecialPrice">$240.00</span><span class="productPriceDiscount"><br />Save: 40% off</span></div></div><div class="sideBoxContent centeredContent"><a href="http://www.patekwatchesstore.com/patek-philippe-6000g010-white-gold-men-calatrava-p-50.html"><img src="http://www.patekwatchesstore.com/images//patek_/Men-s-Watches/Calatrava/6000G-010-White-Gold-Men-Calatrava-.png" alt="Patek Philippe 6000G-010 - White Gold - Men Calatrava" title=" Patek Philippe 6000G-010 - White Gold - Men Calatrava " width="130" height="135" /></a><a class="sidebox-products" href="http://www.patekwatchesstore.com/patek-philippe-6000g010-white-gold-men-calatrava-p-50.html">Patek Philippe 6000G-010 - White Gold - Men Calatrava </a><div><span class="normalprice">$352.00 </span> <span class="productSpecialPrice">$245.00</span><span class="productPriceDiscount"><br />Save: 30% off</span></div></div><div class="sideBoxContent centeredContent"><a href="http://www.patekwatchesstore.com/patek-philippe-5074r001-rose-gold-men-grand-complications-p-147.html"><img src="http://www.patekwatchesstore.com/images//patek_/Men-s-Watches/Grand-Complications/5074R-001-Rose-Gold-Men-Grand-Complications-.png" alt="Patek Philippe 5074R-001 - Rose Gold - Men Grand Complications" title=" Patek Philippe 5074R-001 - Rose Gold - Men Grand Complications " width="130" height="145" /></a><a class="sidebox-products" href="http://www.patekwatchesstore.com/patek-philippe-5074r001-rose-gold-men-grand-complications-p-147.html">Patek Philippe 5074R-001 - Rose Gold - Men Grand Complications </a><div><span class="normalprice">$278.00 </span> <span class="productSpecialPrice">$230.00</span><span class="productPriceDiscount"><br />Save: 17% off</span></div></div><div class="sideBoxContent centeredContent"><a href="http://www.patekwatchesstore.com/patek-philippe-5124g001-white-gold-men-gondolo-p-58.html"><img src="http://www.patekwatchesstore.com/images//patek_/Men-s-Watches/Gondolo/5124G-001-White-Gold-Men-Gondolo-.png" alt="Patek Philippe 5124G-001 - White Gold - Men Gondolo" title=" Patek Philippe 5124G-001 - White Gold - Men Gondolo " width="130" height="132" /></a><a class="sidebox-products" href="http://www.patekwatchesstore.com/patek-philippe-5124g001-white-gold-men-gondolo-p-58.html">Patek Philippe 5124G-001 - White Gold - Men Gondolo </a><div><span class="normalprice">$316.00 </span> <span class="productSpecialPrice">$201.00</span><span class="productPriceDiscount"><br />Save: 36% off</span></div></div></div> </div></td> <td id="columnCenter" valign="top"> <div id="navBreadCrumb"> <a href="http://www.patekwatchesstore.com/">Home</a> :: <a href="http://www.patekwatchesstore.com/replica-patek-mens-watches-c-1.html">Replica Patek Men's Watches</a> :: <a href="http://www.patekwatchesstore.com/replica-patek-mens-watches-replica-patek-calatrava-c-1_2.html">Replica Patek Calatrava</a> :: Patek Philippe 5153G-001 - White Gold - Men Calatrava </div> <div class="centerColumn" id="productGeneral"> <h1 id="productName" class="productGeneral">Patek Philippe 5153G-001 - White Gold - Men Calatrava </h1> <form name="cart_quantity" action="http://www.patekwatchesstore.com/patek-philippe-5153g001-white-gold-men-calatrava-p-37.html?action=add_product" method="post" enctype="multipart/form-data"> <link rel="stylesheet" href="http://www.patekwatchesstore.com/style/jqzoom.css" type="text/css" media="screen" /> <link rel="stylesheet" href="http://www.patekwatchesstore.com/style/jqzoomimages.css" type="text/css" media="screen" /> <style type="text/css"> .jqzoom{ float:left; position:relative; padding:0px; cursor:pointer; width:301px; height:325px; }"</style> <div id="productMainImage" class="centeredContent back"> <div class="jqzoom" > <a href="http://www.patekwatchesstore.com/patek-philippe-5153g001-white-gold-men-calatrava-p-37.html" ><img src="http://www.patekwatchesstore.com/images//patek_/Men-s-Watches/Calatrava/5153G-001-White-Gold-Men-Calatrava-.png" alt="Patek Philippe 5153G-001 - White Gold - Men Calatrava " jqimg="images//patek_/Men-s-Watches/Calatrava/5153G-001-White-Gold-Men-Calatrava-.png" id="jqzoomimg"></a></div> <div style="clear:both;"></div> <div id='jqzoomimages' class="smallimages"></div> <noscript> <a href="http://www.patekwatchesstore.com/index.php?main_page=popup_image&pID=37" target="_blank"> <a href="http://www.patekwatchesstore.com/patek-philippe-5153g001-white-gold-men-calatrava-p-37.html" ><img src="http://www.patekwatchesstore.com/images//patek_/Men-s-Watches/Calatrava/5153G-001-White-Gold-Men-Calatrava-.png" alt="Patek Philippe 5153G-001 - White Gold - Men Calatrava" title=" Patek Philippe 5153G-001 - White Gold - Men Calatrava " width="300" height="318" /></a><br /><span class="imgLink">larger image</span></a> </noscript> </div> <span id="productPrices" class="productGeneral"> <span class="normalprice">$496.00 </span> <span class="productSpecialPrice">$250.00</span><span class="productPriceDiscount"><br />Save: 50% off</span></span> <div id="cartAdd"> Add to Cart: <input type="text" name="cart_quantity" value="1" maxlength="6" size="4" /><input type="hidden" name="products_id" value="37" /><input type="image" src="http://www.patekwatchesstore.com/includes/templates/dresses/buttons/english/button_in_cart.gif" alt="Add to Cart" title=" Add to Cart " /> </div> <br class="clearBoth" /> <div id="productDescription" class="productGeneral biggerText">Product Description<hr style=" border:1px dashed #d6d2c2; width:750px;"/> <h3 class="acctitle"> Movement </h3> <div class="attributes"> <ul> <li>Mechanical self-winding movement with date</li><li>Caliber 324 S C</li><li>Date</li><li>Center sweep Seconds hand</li><li>Diameter: 27 mm</li><li>Height: 3.3 mm</li><li>Jewels: 29</li><li>Bridges: 6</li><li>Parts: 213</li><li>Balance: Gyromax</li><li>Vibrations/hour: 28 800 (4 Hz)</li><li>Power reserve: 45 h max.</li><li>Hallmark: Patek Philippe Seal</li> </ul> </div> <h3 class="acctitle"> Technical data </h3> <div class="attributes"> <ul> <li>Mechanical self-winding movement with date</li> <li>Caliber 324 S C</li> <li>Date in an aperture</li><li>Center sweep second hand</li><li>Black dial, hand-guilloched, gold applied hour markers</li><li>Strap: alligator with square scales, hand-stitched, matt black with gray stitching</li><li>Fold-over clasp</li><li>Sapphire-crystal case back protected by a hinged dust cover</li><li>Water resistant to 30 m</li><li>White gold</li><li>Case diameter: 38 mm</li> </ul> </div> </div> <br class="clearBoth" /> <div align="center"> <p style='text-align:center;'> <a href="http://www.patekwatchesstore.com/patek-philippe-5153g001-white-gold-men-calatrava-p-37.html" ><img src="http://www.patekwatchesstore.com/images//patek_/Men-s-Watches/Calatrava/5153G-001-White-Gold-Men-Calatrava--1.png" alt="/patek_/Men-s-Watches/Calatrava/5153G-001-White-Gold-Men-Calatrava--1.png"/></a></p><p style='text-align:center;'> <a href="http://www.patekwatchesstore.com/patek-philippe-5153g001-white-gold-men-calatrava-p-37.html" ><img src="http://www.patekwatchesstore.com/images//patek_/Men-s-Watches/Calatrava/5153G-001-White-Gold-Men-Calatrava--2.png" alt="/patek_/Men-s-Watches/Calatrava/5153G-001-White-Gold-Men-Calatrava--2.png"/></a></p><p style='text-align:center;'> <a href="http://www.patekwatchesstore.com/patek-philippe-5153g001-white-gold-men-calatrava-p-37.html" ><img src="http://www.patekwatchesstore.com/images//patek_/Men-s-Watches/Calatrava/5153G-001-White-Gold-Men-Calatrava--3.png" alt="/patek_/Men-s-Watches/Calatrava/5153G-001-White-Gold-Men-Calatrava--3.png"/></a></p><p style='text-align:center;'> <a href="http://www.patekwatchesstore.com/patek-philippe-5153g001-white-gold-men-calatrava-p-37.html" ><img src="http://www.patekwatchesstore.com/images//patek_/Men-s-Watches/Calatrava/5153G-001-White-Gold-Men-Calatrava--4.png" alt="/patek_/Men-s-Watches/Calatrava/5153G-001-White-Gold-Men-Calatrava--4.png"/></a></p><p style='text-align:center;'> <a href="http://www.patekwatchesstore.com/patek-philippe-5153g001-white-gold-men-calatrava-p-37.html" ><img src="http://www.patekwatchesstore.com/images//patek_/Men-s-Watches/Nautilus/5711-1A-011-Stainless-Steel-Men-Nautilus--7.png" alt="/patek_/Men-s-Watches/Nautilus/5711-1A-011-Stainless-Steel-Men-Nautilus--7.png"/></a></p><p style='text-align:center;'> <a href="http://www.patekwatchesstore.com/patek-philippe-5153g001-white-gold-men-calatrava-p-37.html" ><img src="http://www.patekwatchesstore.com/images//patek_/Men-s-Watches/Nautilus/5711-1A-011-Stainless-Steel-Men-Nautilus--8.png" alt="/patek_/Men-s-Watches/Nautilus/5711-1A-011-Stainless-Steel-Men-Nautilus--8.png"/></a></p><p style='text-align:center;'> <a href="http://www.patekwatchesstore.com/patek-philippe-5153g001-white-gold-men-calatrava-p-37.html" ><img src="http://www.patekwatchesstore.com/images//patek_/Men-s-Watches/Nautilus/5711-1A-011-Stainless-Steel-Men-Nautilus--9.png" alt="/patek_/Men-s-Watches/Nautilus/5711-1A-011-Stainless-Steel-Men-Nautilus--9.png"/></a></p><p style='text-align:center;'> <a href="http://www.patekwatchesstore.com/patek-philippe-5153g001-white-gold-men-calatrava-p-37.html" ><img src="http://www.patekwatchesstore.com/images//patek_/Men-s-Watches/Nautilus/5711-1A-011-Stainless-Steel-Men-Nautilus--10.png" alt="/patek_/Men-s-Watches/Nautilus/5711-1A-011-Stainless-Steel-Men-Nautilus--10.png"/></a></p><p style='text-align:center;'> <a href="http://www.patekwatchesstore.com/patek-philippe-5153g001-white-gold-men-calatrava-p-37.html" ><img src="http://www.patekwatchesstore.com/images//patek_/Men-s-Watches/Calatrava/5153G-001-White-Gold-Men-Calatrava--5.jpg" alt="/patek_/Men-s-Watches/Calatrava/5153G-001-White-Gold-Men-Calatrava--5.jpg"/></a></p><p style='text-align:center;'> <a href="http://www.patekwatchesstore.com/patek-philippe-5153g001-white-gold-men-calatrava-p-37.html" ><img src="http://www.patekwatchesstore.com/images//patek_/Men-s-Watches/Calatrava/5153G-001-White-Gold-Men-Calatrava--6.jpg" alt="/patek_/Men-s-Watches/Calatrava/5153G-001-White-Gold-Men-Calatrava--6.jpg"/></a></p><p style='text-align:center;'> <a href="http://www.patekwatchesstore.com/patek-philippe-5153g001-white-gold-men-calatrava-p-37.html" ><img src="http://www.patekwatchesstore.com/images//patek_/Men-s-Watches/Calatrava/5153G-001-White-Gold-Men-Calatrava--7.jpg" alt="/patek_/Men-s-Watches/Calatrava/5153G-001-White-Gold-Men-Calatrava--7.jpg"/></a></p><p style='text-align:center;'> <a href="http://www.patekwatchesstore.com/patek-philippe-5153g001-white-gold-men-calatrava-p-37.html" ><img src="http://www.patekwatchesstore.com/images//patek_/Men-s-Watches/Calatrava/5153G-001-White-Gold-Men-Calatrava--8.jpg" alt="/patek_/Men-s-Watches/Calatrava/5153G-001-White-Gold-Men-Calatrava--8.jpg"/></a></p><p style='text-align:center;'> <a href="http://www.patekwatchesstore.com/patek-philippe-5153g001-white-gold-men-calatrava-p-37.html" ><img src="http://www.patekwatchesstore.com/images//patek_/Men-s-Watches/Calatrava/5153G-001-White-Gold-Men-Calatrava--9.jpg" alt="/patek_/Men-s-Watches/Calatrava/5153G-001-White-Gold-Men-Calatrava--9.jpg"/></a></p><p style='text-align:center;'> <a href="http://www.patekwatchesstore.com/patek-philippe-5153g001-white-gold-men-calatrava-p-37.html" ><img src="http://www.patekwatchesstore.com/images//patek_/Men-s-Watches/Calatrava/5153G-001-White-Gold-Men-Calatrava--10.jpg" alt="/patek_/Men-s-Watches/Calatrava/5153G-001-White-Gold-Men-Calatrava--10.jpg"/></a></p><p style='text-align:center;'> <a href="http://www.patekwatchesstore.com/patek-philippe-5153g001-white-gold-men-calatrava-p-37.html" ><img src="http://www.patekwatchesstore.com/images//patek_/Men-s-Watches/Calatrava/5153G-001-White-Gold-Men-Calatrava--11.jpg" alt="/patek_/Men-s-Watches/Calatrava/5153G-001-White-Gold-Men-Calatrava--11.jpg"/></a></p><p style='text-align:center;'> <a href="http://www.patekwatchesstore.com/patek-philippe-5153g001-white-gold-men-calatrava-p-37.html" ><img src="http://www.patekwatchesstore.com/images//patek_/Men-s-Watches/Calatrava/5153G-001-White-Gold-Men-Calatrava--12.jpg" alt="/patek_/Men-s-Watches/Calatrava/5153G-001-White-Gold-Men-Calatrava--12.jpg"/></a></p> </div> <div class="centerBoxWrapper" id="similar_product"> <h2 class="centerBoxHeading">Related Products</h2> <table><tr> <td style="display:block;float:left;width:24.5%;"> <div style="width:160px;height:200px;"> <a href="http://www.patekwatchesstore.com/patek-philippe-5119g001-white-gold-men-calatrava-p-27.html"><img src="http://www.patekwatchesstore.com/images//patek_/Men-s-Watches/Calatrava/5119G-001-White-Gold-Men-Calatrava-.png" alt="Patek Philippe 5119G-001 - White Gold - Men Calatrava" title=" Patek Philippe 5119G-001 - White Gold - Men Calatrava " width="160" height="163" /></a></div><a href="http://www.patekwatchesstore.com/patek-philippe-5119g001-white-gold-men-calatrava-p-27.html">Patek Philippe 5119G-001 - White Gold - Men Calatrava </a> </td> <td style="display:block;float:left;width:24.5%;"> <div style="width:160px;height:200px;"> <a href="http://www.patekwatchesstore.com/patek-philippe-5196g001-white-gold-men-calatrava-p-39.html"><img src="http://www.patekwatchesstore.com/images//patek_/Men-s-Watches/Calatrava/5196G-001-White-Gold-Men-Calatrava-.png" alt="Patek Philippe 5196G-001 - White Gold - Men Calatrava" title=" Patek Philippe 5196G-001 - White Gold - Men Calatrava " width="160" height="177" /></a></div><a href="http://www.patekwatchesstore.com/patek-philippe-5196g001-white-gold-men-calatrava-p-39.html">Patek Philippe 5196G-001 - White Gold - Men Calatrava </a> </td> <td style="display:block;float:left;width:24.5%;"> <div style="width:160px;height:200px;"> <a href="http://www.patekwatchesstore.com/patek-philippe-5153j001-yellow-gold-men-calatrava-p-38.html"><img src="http://www.patekwatchesstore.com/images//patek_/Men-s-Watches/Calatrava/5153J-001-Yellow-Gold-Men-Calatrava-.png" alt="Patek Philippe 5153J-001 - Yellow Gold - Men Calatrava" title=" Patek Philippe 5153J-001 - Yellow Gold - Men Calatrava " width="160" height="169" /></a></div><a href="http://www.patekwatchesstore.com/patek-philippe-5153j001-yellow-gold-men-calatrava-p-38.html">Patek Philippe 5153J-001 - Yellow Gold - Men Calatrava </a> </td> <td style="display:block;float:left;width:24.5%;"> <div style="width:160px;height:200px;"> <a href="http://www.patekwatchesstore.com/patek-philippe-5153g001-white-gold-men-calatrava-p-37.html"><img src="http://www.patekwatchesstore.com/images//patek_/Men-s-Watches/Calatrava/5153G-001-White-Gold-Men-Calatrava-.png" alt="Patek Philippe 5153G-001 - White Gold - Men Calatrava" title=" Patek Philippe 5153G-001 - White Gold - Men Calatrava " width="160" height="169" /></a></div><a href="http://www.patekwatchesstore.com/patek-philippe-5153g001-white-gold-men-calatrava-p-37.html">Patek Philippe 5153G-001 - White Gold - Men Calatrava </a> </td> </table> </div> <br class="clearBoth" /> </form> </div> </td> </tr> </table> <div id="navSuppWrapper"> <div id="navSupp"> <ul><li><a href="http://www.patekwatchesstore.com/index.php">Home</a></li> <li> <a href="http://www.patekwatchesstore.com/index.php?main_page=shippinginfo">Shipping</a></li> <li> <a href="http://www.patekwatchesstore.com/index.php?main_page=Payment_Methods">Wholesale</a></li> <li> <a href="http://www.patekwatchesstore.com/index.php?main_page=shippinginfo">Order Tracking</a></li> <li> <a href="http://www.patekwatchesstore.com/index.php?main_page=Coupons">Coupons</a></li> <li> <a href="http://www.patekwatchesstore.com/index.php?main_page=Payment_Methods">Payment Methods</a></li> <li> <a href="http://www.patekwatchesstore.com/index.php?main_page=contact_us">Contact Us</a></li> </ul> </div> <div style=" margin-bottom:10px; margin-top:10px; width:100%; text-align:center;"> <a style=" font-weight:bold;" href="http://www.patekwatchesstore.com/" target="_blank">PATEK PHILIPPE WATCHES</a> <a style=" font-weight:bold;" href="http://www.patekwatchesstore.com/" target="_blank">PATEK PHILIPPE IMITATE</a> <a style=" font-weight:bold;" href="http://www.patekwatchesstore.com/" target="_blank">PATEK PHILIPPE DISCOUNT WATCHES</a> <a style=" font-weight:bold;" href="http://www.patekwatchesstore.com/" target="_blank">PATEK PHILIPPE CHEAP STOER</a> <a style=" font-weight:bold;" href="http://www.patekwatchesstore.com/" target="_blank">PATEK PHILIPPE HIGH IMITATE</a> </div> <DIV align="center"> <a href="http://www.patekwatchesstore.com/patek-philippe-5153g001-white-gold-men-calatrava-p-37.html" ><IMG src="http://www.patekwatchesstore.com/includes/templates/dresses/images/payment_shipping_logo.png" width="474" height="64"></a> </DIV> <div align="center">Copyright © 2012 All Rights Reserved. </div> </div> </div> <strong><a href="http://www.patekwatchesstore.com">replica patek</a></strong><br> <strong><a href="http://www.patekwatchesstore.com">philippe patek</a></strong><br> <strong><a href="http://www.patekwatchesstore.com">the patek philippe</a></strong><br> <strong><a href="http://www.patekwatchesstore.com/ladies-watches-c-6.html">watch</a></strong><br> <strong><a href="http://www.patekwatchesstore.com/ladies-watches-c-6.html">patek philip</a></strong><br> |
| brishen10 | |
![]() Regular |
<ul><li><strong><a href="http://www.selltiffanyoutlet.com/">stores sell tiffany jewelry</a></strong> </li><li><strong><a href="http://www.selltiffanyoutlet.com/">stores sell tiffany jewelry</a></strong> </li><li><strong><a href="http://www.selltiffanyoutlet.com/">sell tiffany and co jewelry</a></strong> </li><li><strong><a href="http://www.selltiffanyoutlet.com/">tiffany silver jewelry</a></strong> </li><li><strong><a href="http://www.selltiffanyoutlet.com/">cheap tiffany and co jewelry</a></strong> </li></ul><br> <ul><li><strong><a href="http://www.selltiffanyoutlet.com/">stores sell tiffany jewelry</a></strong> </li><li><strong><a href="http://www.selltiffanyoutlet.com/">stores sell tiffany jewelry</a></strong> </li><li><strong><a href="http://www.selltiffanyoutlet.com/">sell tiffany and co jewelry</a></strong> </li><li><strong><a href="http://www.selltiffanyoutlet.com/">tiffany silver jewelry</a></strong> </li><li><strong><a href="http://www.selltiffanyoutlet.com/">cheap tiffany and co jewelry</a></strong> </li></ul><br> <strong><a href="http://www.selltiffanyoutlet.com/">tiffany jewelry outlet</a></strong> <br> <strong><a href="http://www.selltiffanyoutlet.com/">tiffany and co outlet</a></strong> <br> <strong><a href="http://www.selltiffanyoutlet.com/">tiffany outlet online</a></strong> <br> <strong><a href="http://www.selltiffanyoutlet.com/">tiffany outlet store</a></strong> <br> <strong><a href="http://www.selltiffanyoutlet.com/">tiffany outlet locations</a></strong> <br> |
Om te reageren moet je ingelogd zijn.
Nog niet geregistreerd? Doe dat dan nu!
Check je domein...
Websitemaken wordt gehost door Nucleus.be

