<!-- Hiding script from old browsers
function init(){
	var uri='http://127.0.0.1';
	var path='/literature/poem/inc.php3?f=';
	var poems = new
Array("writer","somethingnew","white","black","jeparle","goddess","windows","lilac","cicatrices","siren","i_wonder","remind","verdant","counting","wings","anamcara","timetocome","pairodice","point","eternity","listen","melancholy","happiness","being","holywars","umbrellas","purple","twomen","solitude","faith","castle","evolution","nobeauty","nostalgia","where","matters");
	y=poems.length;
	qstring = window.location.search;
	query = qstring.split('=');
	
	for (x=0;x<y;x++){
		if (query[1]==poems[x]){
			break;
		}	
	}
	//first href
	window.document.links[10].href = path + poems[0];
	//previous href
	if (x-1 <= 1){
		window.document.links[11].href = path + poems[0];
	} else {
		window.document.links[11].href = path + poems[x-1];
	}
	//next href
	if (x+1 >= y){
		window.document.links[12].href = path + poems[y-1];
	} else {
		window.document.links[12].href = path + poems[x+1];
	}
	//last href
	window.document.links[13].href = path + poems[y-1];
	
	//alert (qstring);
}
//-->

