function popIt(n){
var link="";
if(n == 1) {
	link = "/cruiselines/princess/grandClass/index.html";
}
else if(n == 2) {
	link = "/cruiselines/RCCL/radianceClass/index.html";
}
else if(n == 3) {
	link = "/cruiselines/RCCL/voyagerClass/index.html";
}
else if(n == 4) {
	link = "/cruiselines/celebrity/millennium/index.html";
}
else if(n == 5) {
	link = "/cruiselines/celebrity/century/index.html";
}
else if(n == 6){
	link = "/cruiselines/oceania/index.html";
}
else if(n == 7){
	link = "/cruiselines/holland/vista/index.html";
}
else if(n == 8){
	link = "/cruiselines/silversea/index.html";
}
else{
}
window.open(link,"mywindow","width=700,height=700,scrollbars");
}