/*function newwindow(img_path) 
{ 
	window.open(img_path,'galerija','width=660,height=505,resizable=no'); 
}
*/
function startGallery() {
				var myGallery = new gallery($('myGallery'), {
					timed: false
				});
			}
function framepage(page_name)
{
	var frameg = document.getElementById("frame_gallery");
	frameg.src = page_name;
}

function srcwebmail()
{
	document.loginform.username.value = document.loginform.user.value + '@srcbl.com';
	document.loginform.action = 'http://84-16-234-108.internetserviceteam.com/login.php';
	document.loginform.submit();
}




function newwindow(img){
image= new Image();
image.src=(img);
openWindow(img);
}

function openWindow(img){
if((image.width!=0)&&(image.height!=0)){
viewImage(img);
}
else{
stuff="openWindow('"+img+"')";
stuff1=setTimeout(stuff,20);
}
}
function viewImage(img){
w=image.width+0;
h=image.height+0;
dims="width="+w+",height="+h;
result=window.open(img,"",dims);
}








