// JavaScript Document

var popUpWin=0;
var locs = new Array();
	locs[0] = ["Print_Sample_1.php",270];
	locs[1] = ["Print_Sample_2.php",450];
	locs[2] = ["Print_Sample_3.php",410];
	locs[3] = ["Identity_Sample_1.php",330];
	locs[4] = ["Design_Sample_1.php",220];
	locs[5] = ["Print_Sample_4.php",320];
	locs[6] = ["Print_Sample_5.php",400];

function samples(whichloc)
{
	w = 600;
	h = locs[whichloc][1];
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;	
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(locs[whichloc][0], 'Samples', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+w+',height='+h+',left='+winl+', top='+wint);
}
