var popUpWin = 0;
function popUpWindow(URLStr, left, top, width, height, scrollbar, resize) {
	if (popUpWin) {
		if (!popUpWin.closed) {
			popUpWin.close();
		}
	}
	popUpWin = open(URLStr, 'popUpWin',
			'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar='
					+ scrollbar + ',resizable=' + resize
					+ ',copyhistory=yes,width=' + width + ',height=' + height
					+ ',left=' + left + ', top=' + top + ',screenX=' + left
					+ ',screenY=' + top + '');
}
function showFS(img) {
	showImg("images/" + img);
}
function showDoll(img) {
	showImg("images/" + img);
}
function showContact(img) {
	showImg("images/" + img);
}
function showImg(img) {
	popUpWindow(img, 50, 50, 640, 550, "yes", "yes");
}

