function ScreenGoToURL(Big,Medium) {
var screen_height = screen.height;
if (screen_height < 768) {
window.location=Medium;
} else {
window.location=Big;
}
}

